hirake page2222
by
taizooo
2010-10-15 [2010/10/15 18:16:22]
tumblr dashboard に現われた reblogger からランダムに page/2222 を開く
/*
* @title hirake page2222
* @description tumblr dashboard に現われた reblogger からランダムに page/2222 を開く
* @include http://www.tumblr.com/dashboard
* @license MIT License
* @require
*/
(function(){
var id=Array.prototype.reduce.call(document.querySelectorAll('a.post_avatar'), function(memo, node) {
if (!~memo.indexOf(node.href)) {
memo.push(node.href);
}
return memo;
}, []);
u=id[Math.floor(Math.random()*id.length)];
x=u+'page/2222';
window.open(x);
}
)();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。