new new twitter autoreload for Firefox
by
uneco
2012-02-16 [2012/02/16 12:25:04]
new new twitter autoreload for Firefox
@@ -7,13 +7,8 @@
* @require
*/
-(function () {
- alert('動くよ => ' + unsafeWindow.$);
- unsafeWindow.$('title').bind('DOMSubtreeModified', function() {
- alert('タイトル変わったよ => ' + unsafeWindow.$);
- setTimeout(function() {
- if (document.title[0] == '(')
- unsafeWindow.$('.new-tweets-bar').click()
- }, 300)
- })
-})()
+var script = document.createElement('script');
+script.textContent = '(' + (function () {
+ alert('動くよ => ' + $);
+}).toString() + ')();';
+document.body.appendChild(script);
/*
* @title new new twitter autoreload for Firefox
* @description new new twitter autoreload for Firefox
* @include http://twitter.com/*
* @include https://twitter.com/*
* @license MIT License
* @require
*/
var script = document.createElement('script');
script.textContent = '(' + (function () {
alert('動くよ => ' + $);
}).toString() + ')();';
document.body.appendChild(script);
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。