このScript、何故か動作してないのですが…。
Googleimage検索の結果版AutoPagerizeです。

// ==UserScript==
// @name apGoogleImageSearch.user.js
// @namespace http://furyu.tea-nifty.com/
// @description prepare for AutoPagerize - Google Image Search
// @include http://images.google.*
// ==/UserScript==
(function(){
window.apGoogleImageSearch = true;
var link=document.evaluate('id("nn")/parent::a',document,null,XPathResult.FIRST_ORDERED_NODE_TYPE,null).singleNodeValue;
if (link.href.match(/\/images\?/)) {
if (link.href.match(/gbv=2/)) {
link.href=link.href.replace(/gbv=2/,'gbv=1');
}
else {
link.href+='&gbv=1';
}
}
})();