エディタ論争
by
cho45
2012-06-22 [2012/06/22 12:39:17]
みんな、大好き。
/*
* @title エディタ論争
* @description みんな、大好き。
* @include http://*
* @license MIT License
* @require
*/
document.body.addEventListener("DOMNodeInserted", (function me (e) {
var walker = document.createTreeWalker(e.target, NodeFilter.SHOW_TEXT, {
acceptNode : function (node) { return NodeFilter.FILTER_ACCEPT }
}, true);
while (walker.nextNode()) with (walker.currentNode)
nodeValue = nodeValue.replace(/(vim?)|(emacs)/gi, function (_, v, e) { return v ? '名前を言ってはいけないあのエディタ' : ['Eclipse', 'Eclipse'][~~(Math.random() * 2)] });
return me;
})({ target: document.body }), false);
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。