よく考えたら、Bookmarklet で実現可能じゃん!!
javascript:if (location.hash) location.hash = ''; else if (location.search) location.search = ''; else if (location.pathname.charAt(location.pathname.length-1) == "/") location = ".."; else if (location.pathname) location = "."; void 0
これにて diggler の役目は終了。
日英切替: mozilla.org と jt.mozilla.gr.jp のコンテンツを切り替え
ながら閲覧する際に便利。
javascript:if (location.hostname == 'www.mozilla.org' || location.hostname == 'mozilla.org') location.hostname = 'jt.mozilla.gr.jp'; else if (location.hostname == 'lxr.mozilla.org'){ location.href = location.href.replace(/lxr.mozilla.org\//, 'jt.mozilla.gr.jp/lxr/'); } else if (location.hostname=='jt.mozilla.gr.jp' && location.pathname.search(/^\/lxr/) == 0) { location.href = location.href.replace(/jt\.mozilla\.gr\.jp\/lxr/, 'lxr.mozilla.org'); } else if (location.hostname == 'jt.mozilla.gr.jp') location.hostname = 'www.mozilla.org';