2018-06-02

低能先生安倍bot非表示にするuserscript

下記をscript.user.jsなど適当名前で保存し、Chrome機能拡張に突っ込んでおく

Vanilla JSで書いてみたが、書き慣れていないのでエレガントではないかもしれない

if(document.location.href.startsWith("https://anond.hatelabo.jp")) {

sections = document.getElementsByClassName('section');

Array.prototype.slice.call(sections).forEach(function(section, i, all) {

ps = section.getElementsByTagName('p');

contain = Array.prototype.slice.call(ps).filter(function(p, j, all) {

if(/安倍/.test(p.innerHTML)) {

return true;

} else if(/低能|低脳/.test(p.innerHTML)) {

return true;

}

}).length > 0;

if(contain){ section.style.display = 'none'; }

});

}

記事への反応(ブックマークコメント)

ログイン ユーザー登録
ようこそ ゲスト さん