Extra caution is recommended when installing recently uploaded/updated scripts (read more)
Be sure you trust any scripts you install

Google Images Auto Pager

autoloads for next page of Google Images search results and rewrites links to point directly to origin images ver 0.03 / 2007.04.27

When you do a google images search and scroll down towards the bottom of search results, this script will seamlessly retrieve the next set of images, display them on the same page and rewrite all the links to point directly to origin images.

To start this script you have to doubleclick anywhere on the page, another dblclick turns off the script.

This script uses XPath that's why is much faster then standard DOM nodes manipulation scripts and doesn't eat so much of your machine resources.

Code based on Google Auto Pager by ma.la and contributors.
Link conversion function borrowed from CustomizeGoogle extension http://www.customizegoogle.com/

Current version is ver. 0.03 - updated 2007.04.27. - changelog in source included.




Jun 16, 2008
Raffles Scriptwright

Without doubleclick, even easier:

replace this line:

document.body.addEventListener('dblclick',dblClickEvents, false);

with this:

dblClickEvents();
createLinks();

that will also create the "origin image" link under the thumbnail for the first set of results.

Excellent script, Pawel!

 
May 10, 2008
thedoorman User

Great script!
I have been using it from the first version.
Could this script be modified to work with PicLens ?

 
Mar 16, 2008
bobielawlintine Scriptwright

Without doubleclick the easy way:

Just change the line

document.body.addEventListener('dblclick',dblClickEvents, false);

to

document.body.addEventListener('load',dblClickEvents, true);

...and voilá, no more doubleclick needed.
So doit yourself.

 
Oct 22, 2007
kmc User

I'm using firefox3.0 +
Greasemonkey 0.7.20070607.0

and this script permanently load and add the second page :(

 
Sep 12, 2007
Edward Grech Scriptwright

Well done!

 
Aug 3, 2007
hebbet Scriptwright

You did a very nice job!!

 
Jul 28, 2007
Marc Brando User

This is a great script.
I also want to thank 'user pandaking' for posting the User Script Updates link without whose tip I'd never have known about.

 
Jun 27, 2007
pandaking User

Also,

Check out User Script Updates - simply update the header of your script and your users will be able to receive change-notification when you improve this script...

 
Jun 27, 2007
pandaking User

Great script.

My only suggestion is to get rid of the "origin image" and just leave the "origin page", as if people want the actual image then they are just going to click the thumbnail.

Another advantage of doing this is that you can make the page link slightly bigger.

Please consider it, cheers...

 
Apr 27, 2007
Mentallo Scriptwright

Awesome Script !

 
Apr 19, 2007
Manuel Seeger Scriptwright

Way to go, what an awesome script! Thanks!

 
Apr 15, 2007
Paweł Kubisz Script's author

@Per Eriksson

if course it is - dive into code and find the line

document.body.addEventListener('dblclick', dblClickEvents, false);

at the end of the script an change this line to this:

dblClickEvents();

thats all

@Dawudd
imho efficiency of these two script is comparable - I've made rewriting in this way due to consistancy with CustomizeGoogle

 
Apr 15, 2007
Per Eriksson User

Is it possible to get it to function automaticly, without having to doubleclick?

 
Apr 15, 2007
Dawudd User

Great script. However, the way ‘Google Image direct links’ rewrites the links is more efficient. The URL underneath the image information is itself rewritten to link to the origin page. Not only does this make the addition of a whole line (‘[ Origin image | Origin page ]’) unnecessary, but the link is also often an easier target to hit.

Would you be interested in modifying the current behaviour?

Thanks.

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