toton (9)

toton Cookie表示2010-05-26

my bookmarklet

javascript:document.cookie;
toton Pingdom Tools2010-05-26

ウェブサイトのパフォーマンスを測定

location='http://tools.pingdom.com/?url='+escape(location.href);
toton related2010-05-26

関連ページを表示

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...
toton web-archive2010-05-19

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(/[^\/]+\/?$/,'');