拒絕爛新聞

再見!爛新聞

  1. // ==UserScript==
  2. // @name 拒絕爛新聞
  3. // @version 1.3
  4. // @description 再見!爛新聞
  5. // @author 威爾斯
  6. // @match *://tw.news.yahoo.com/*.html
  7. // @match *://*.setn.com/*
  8. // @match *://*.udn.com/news/*
  9. // @match *://*.ettoday.net/*
  10. // @match *://*.appledaily.com/*
  11. // @match *://*.ctitv.com.tw/*
  12. // @match *://*.chinatimes.com/*
  13. // @match *://news.pchome.com.tw/*
  14. // @match *://today.line.me/*
  15. // @match *://*moneynet.com.tw/*
  16. // @match *://*cna.com.tw/*
  17. // @match *://*ltn.com.tw/*
  18. // @match *://*times.hinet.net/news/*
  19. // @match *://*n.yam.com/Article/*
  20. // @grant none
  21. // @namespace https://example.com
  22. // ==/UserScript==
  23.  
  24. //蕭琪琳:創造許多假新聞,真廣告
  25. //永豐建經:假新聞、真廣告
  26. //唐鳳:IQ180(?), apple consultant(?), Controversial(true)
  27.  
  28. (function() {
  29. 'use strict';
  30. var keyWord=['三立','性侵','性騷擾','小模','上床','淫辱','嘿咻','姓男','姓女','性行為','禽獸','人妻','激戰'];
  31. var killWord=['化名','非當事人','示意圖','蕭琪琳','永豐建經','唐鳳'];
  32. var count=0;
  33. var html=document.documentElement.innerText.trim();
  34.  
  35. killWord.forEach(function(e) {
  36. if(html.indexOf(e)!==-1)close();
  37. });
  38.  
  39. keyWord.forEach(function(e) {
  40. if(html.indexOf(e)!==-1)count++;
  41. if(count>=3)close();
  42. });
  43. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址