🏠 Home 

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

目前只支持桌面web页面


安装此脚本?
// ==UserScript==
// @name         原神NGA板块屏蔽幽夜净土帖子
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  目前只支持桌面web页面
// @author       wcx19911123
// @include        *bbs.nga.cn/thread.php?fid=650*
// @icon         https://www.google.com/s2/favicons?domain=nga.cn
// @grant        none
// ==/UserScript==
const rubbish = /.*幽夜净土.*/;
(function() {
'use strict';
let eventId = setInterval(function(){
document.querySelector("#topicrows") ?
[... document.querySelector("#topicrows").querySelectorAll("td.c2")]
.filter(o=>o.innerHTML.match(rubbish))
.forEach(o=>o.parentNode.parentNode.remove())
:null;
},100);
})();