原神NGA板块屏蔽幽夜净土帖子

目前只支持桌面web页面

  1. // ==UserScript==
  2. // @name 原神NGA板块屏蔽幽夜净土帖子
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description 目前只支持桌面web页面
  6. // @author wcx19911123
  7. // @include *bbs.nga.cn/thread.php?fid=650*
  8. // @icon https://www.google.com/s2/favicons?domain=nga.cn
  9. // @grant none
  10. // ==/UserScript==
  11. const rubbish = /.*幽夜净土.*/;
  12. (function() {
  13. 'use strict';
  14. let eventId = setInterval(function(){
  15. document.querySelector("#topicrows") ?
  16. [... document.querySelector("#topicrows").querySelectorAll("td.c2")]
  17. .filter(o=>o.innerHTML.match(rubbish))
  18. .forEach(o=>o.parentNode.parentNode.remove())
  19. :null;
  20. },100);
  21. })();

QingJ © 2025

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