Twitter user jump
by
efcl
2010-05-15 [2010/05/15 22:27:16]
Twitterのユーザネームを選択した状態で実行(@なしでもOK)
-
/*
* @title Twitter user jump
* @description Twitterのユーザネームを選択した状態で実行(@なしでもOK)
* @include http://*
* @license MIT License
* @require
*/
(function(){
if(document.getSelection){
var sel=document.getSelection();
}
else{
var sel=document.selection.createRange().text
}
sel=sel.replace("@","");
window.open("http://twitter.com/"+encodeURIComponent(sel),"_blank");
}
)();
-
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。