Extra caution is recommended when installing recently uploaded/updated scripts (read more)
Be sure you trust any scripts you install
Google Images Direct Link
Replaces links in google images with direct link to image file
|
|
Uploaded my version at http://userscripts.org/scripts/show/26660 and am hoping an admin will soon come and delete my earlier comments. |
|
|
dammit - truncated!
for (i=0;i |
|
|
This was just what I was looking for, thank you. However, then I realised that I might occasionally might want the original page, so I added a couple of lines to put a Direct link in with the text below an image:
// ==UserScript==
// @name Google Images Direct Link
// @description Adds a direct link to image file in google images
// @include http://images.google.*/*
// ==/UserScript==
var a = document.getElementById('ImgContent');
if (a){
var b=a.getElementsByTagName("a");
var i=0;
var tmpurl="";
for (i=0;i
|
|
|
You can change included pages to http://images.google.*/* So, the script will work in all international pages of Google Images (eg: images.google.com.br). Alteration tested, working good. |
|
|
Nice! |
You could comment on this script if you were logged in.
