Twitterのテキストエリアに自動でフォーカスする機能をオフにするGreasemonkeyスクリプト
いろいろ考えたけど、下のが簡単でいいと思う。
// ==UserScript== // @name Twitter AutoFocus off // @namespace http://d.hatena.ne.jp/javascripter/ // @include http://twitter.com/home // ==/UserScript== window.addEventListener('load', function() { document.activeElement.blur(); this.removeEventListener('load', arguments.callee, false); }, false);