Hatena::Let spam filter
/*
* @title Hatena::Let SPAM Filter
* @description Hatena::Let の一覧から SPAM 投稿を消す(やっつけだけど)
* @include http://let.hatelabo.jp/*
* @license MIT License
* @javascript_url
*/
(function () {
var forEach = Array.prototype.forEach;
var re1 = /^(https?:)+\s*$/,
re2 = /(https?:){2,}/;
var wipeout = function(ctx) {
forEach.call(document.body.querySelectorAll('div.codelist'), function (item) {
var source_block = item.querySelectorAll('pre.packed-source');
if (source_block.length == 0) {
item.style.display = 'none';
return;
}
var source = source_block[0];
if (re1.exec(source.textContent) || re2.exec(source.textContent)) {
item.style.display = 'none';
return;
}
});
};
wipeout(document.body);
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。