今さらながら、Twitter Bookmarklet

今さらながら、Twitter Bookmarklet #

今さら Twitter。いや、自分で使うツールが欲しかったので。なんか、まだ挙動があやしいんだけど、動いてはいるのでソース張っとく

マウスで選択した部分を投稿するのがメインの用途だ
参考にしたのは、いつも利用している「あとで読む

 javascript:(function(){
     var U='Username';
     var P='Password';
     var S='';
     if(document.selection)
         S=document.selection.createRange().text;
     else if(window.getSelection)
         S=window.getSelection();
     else if(document.getSelection)
         S=document.getSelection();
     var V = prompt('twit ?',S);
     if(V==null || V=='' || V.length > 140)return;
     var W=window.open('','','width=200,height=100');
     var D=W.document;
     D.title='now twitting';
     var F=D.body.appendChild(D.createElement('form'));
     F.setAttribute('method','POST');
     F.setAttribute('action','http://'+U+':'+P+'@twitter.com/statuses/update.xml?status='+encodeURIComponent(V));
     F.submit();
     W.onunload=function(){W.close()}
 })()

See Also

Copyright © 髭。/ Hugo + hugo-book