Skip to content

Instantly share code, notes, and snippets.

@pindamonhangaba
pindamonhangaba / gist:3901319
Created October 16, 2012 19:12 — forked from druu/gist:3901226
Bookmarklet: Clean up Google's search result URLs
javascript(function(){var links=document.querySelectorAll('a.l'),count=links.length;while(count--){links[count].onmousedown=null;if((/url=/i).test(links[count].href)){links[count].href=decodeURIComponent(links[count].href.match(/url=([a-z0-9\-+%._]+)&/i)[1].replace(/\+/g, ' '));}};})()