unZWS tweet
by
taizooo
2012-08-29 [2012/08/29 00:04:26]
ZWS encode された tweet を decode
@@ -1,12 +1,13 @@
/*
* @title unZWS tweet
- * @description twitter status page で ZWS encode された tweet を decode
+ * @description ZWS encode された tweet を decode
* @include http://*
* @license MIT License
* @require https://raw.github.com/youpy/node-zws/master/lib/zws.js
*/
-var a=document.querySelector('.js-tweet-text');
-a.textContent=ZWS.decode(a.textContent);
-
+var n=document.querySelectorAll('.js-tweet-text');
+[].forEach.call(n, function (a) {
+ a.textContent=ZWS.decode(a.textContent);
+})
/*
* @title unZWS tweet
* @description ZWS encode された tweet を decode
* @include http://*
* @license MIT License
* @require https://raw.github.com/youpy/node-zws/master/lib/zws.js
*/
var n=document.querySelectorAll('.js-tweet-text');
[].forEach.call(n, function (a) {
a.textContent=ZWS.decode(a.textContent);
})
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。