Krishean's Google Goo Remover that removes the tracking crap from links in Google search, so you can have clean links for copying:
javascript:{function%20detect(el){var%20s=((el.toSource)?el.toSource():el.toString());return(s.indexOf('return%20rwt(')!=-1||s.indexOf('return%20clk(')!=-1);}var%20a=document.getElementsByTagName('a');for(var%20i=0;i<a.length;i++)if(a[i].className=='l'&&a[i].onmousedown&&detect(a[i].onmousedown))a[i].setAttribute('onmousedown','');void(0);};
Snailify ItOn my old slow PC, this one is very handy when I hit a page that won't load well on an old slow computer. It takes you to the Google mobile version of the page.
javascript:location.href='http://www.google.com/gwt/n?_gwt_pg=0&u='+document.location.href;
Zap ColorsWhen you hit a funky looking page that is too difficult to read because of the web designers choice of background and/or text colors, this one turns the page into black text on a white background with blue unvisited/purple visited links. (you'll never have to deal with lime green text with yellow links on a red background ever again)
javascript:(function(){var%20newSS,%20styles='*%20{%20background:%20white%20!%20important;%20color:%20black%20!important%20}%20:link,%20:link%20*%20{%20color:%20#0000EE%20!important%20}%20:visited,%20:visited%20*%20{%20color:%20#551A8B%20!important%20}';%20if(document.createStyleSheet)%20{%20document.createStyleSheet("javascript:'"+styles+"'");%20}%20else%20{%20newSS=document.createElement('link');%20newSS.rel='stylesheet';%20newSS.href='data:text/css,'+escape(styles);%20document.getElementsByTagName("head")[0].appendChild(newSS);%20}%20})();
Backtype ConnectThis one will show you some recent discussions and tweets associated with any page on the internet. (test it out
here to see what it does) This is more handy for your own pages, to track references to it on the web. (Google Alerts can only go so far and misses a lot of what this picks up)
javascript:location.href='http://www.backtype.com/connect/'+encodeURIComponent(location.href.substring(7).replace(new%20RegExp('/','g'),'%252f').replace(new%20RegExp('&','g'),'%2526'))+'?referrer'
These 2 work well together, for pages that have a lot of thumbnails linked to other pages, where you want to save a list of just the links, so you can hit them all later.
The first creates a page in a popup window, just listing all the links on the page:
javascript:WN7z=open('','Z6','width=400,height=200,scrollbars,resizable,menubar');DL5e=document.links;with(WN7z.document){write('<base%20target=_blank>');for(lKi=0;lKi<DL5e.length;lKi++){write(DL5e[lKi].toString().link(DL5e[lKi])+'<br><br>')};void(close())}
This one hides all visited links, so all you see are the ones you haven't hit yet:
javascript:(function(){var%20newSS,%20styles=':visited%20{display:%20none}';%20if(document.createStyleSheet)%20{%20document.createStyleSheet(%22javascript:'%22+styles+%22'%22);%20}%20else%20{%20newSS=document.createElement('link');%20newSS.rel='stylesheet';%20newSS.href='data:text/css,'+escape(styles);%20document.getElementsByTagName(%22head%22)[0].appendChild(newSS);%20}%20})();