quote:
Originally posted by WDZ
quote:
Originally posted by Chr1s
Thats done by an extension called CustomizeGoogle for firefox.
* WDZ slaps chris4 around a bit with a large trout.
You got my hopes up... I want the [Origin Image] link...
paste the following into one of those userjs things for google images site , it will rewrite the link to the real image.
code:
var links = document.getElementsByTagName('a');
for(var i =0;i<links.length;i++){
var match = links[i].href.match( /\/imgres\?imgurl\=(.*?)\&imgrefurl\=/ );
if(match){
links[i].href = decodeURI(match[1]);
}
}