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




May 16, 2008
ACMB Scriptwright

Uploaded my version at http://userscripts.org/scripts/show/26660 and am hoping an admin will soon come and delete my earlier comments.

 
May 16, 2008
ACMB Scriptwright
dammit - truncated!
for (i=0;i
 
May 16, 2008
ACMB Scriptwright
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
 
May 10, 2008
Bruno 'ReX' ... Scriptwright

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.

 
Apr 20, 2008
dogfishguzzler User

Nice!

You could comment on this script if you were logged in.