拒絕爛新聞

再見!爛新聞

目前为 2019-03-29 提交的版本。查看 最新版本

// ==UserScript==
// @name         拒絕爛新聞
// @namespace    
// @version      1.0
// @description  再見!爛新聞
// @author       威爾斯
// @match        *://tw.news.yahoo.com/*
// @match        *://*.setn.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var keyWord=['三立','非當事人','性侵','性騷擾','示意圖','小模','上床','淫辱','嘿咻','姓男','姓女','性行為','禽獸'];
    var killWord=['化名'];
    var count=0;
    var html=document.documentElement.innerText.trim();

    killWord.forEach(function(e) {
        if(html.indexOf(e)!==-1)close();
    });

    keyWord.forEach(function(e) {
        if(html.indexOf(e)!==-1)count++;
        if(count>=3)close();
    });
})();