とりあえずブックマークレット何本か。
/*googleで検索*/
javascript:(function(){var p=window.prompt("google",""),g="
http://www.google.co.jp/ie";if(p!=null){g+="?hl=ja&ie=UTF-8&c2coff=1&q="+encodeURI(p)};location.href=g;})();
いちいちgoogleに移動するよりはいくらか早い(が不毛)
/*イメージ一覧*/
javascript:(function(){var a=document.images,i;for(i=0;i<a.length;i++){document.write('<a href="'+a[i].src+'">'+a[i].src+'</a><br>');}document.close();})();
/*リンク一覧*/
javascript:(function(){var a=document.links,i;for(i=0;i<a.length;i++){document.write('<a href="'+a[i].href+'">'+a[i].href+'</a><br>');}document.close();})();
/*閲覧中ページへのリンク*/
javascript:document.body.innerHTML='<textarea cols="23" rows="11"><a href="'+location.href+'">'+document.title+'</a></textarea>';
blog野郎むけ?