my bookmarklet
javascript:document.cookie;
ウェブサイトのパフォーマンスを測定
location='http://tools.pingdom.com/?url='+escape(location.href);
関連ページを表示
location='http://www.google.co.jp/search?q=related:'+escape(location.href);
http://xpath.kayac.com/help , たぶんIE以外用
google-code-prettifyでシンタックスハイライト
$((function(){$("code").addClass("prettyprint");$("pre").addClass("prettyprint");$("textarea").ad...
webアーカイブ(Wayback Machine)からログを取得する
location='http://web.archive.org/web/*'+escape(location.href);
urlフラグメント削除
location=location.href.replace(/#.*$/,"");
urlパラメータ削除
location=location.href.replace(/\?.*$/,"");
一つ上の階層に移動
location=location.href.replace(/[^\/]+\/?$/,'');