半肾
精华
|
战斗力 鹅
|
回帖 0
注册时间 2015-5-9
|
本帖最后由 小野賢章 于 2019-1-17 16:44 编辑
试了一下大概可以这样写
- // ==UserScript==
- // @name 干死列举帖!
- // @namespace https://bbs.saraba1st.com/2b/space-uid-189680.html
- // @description 屏蔽Stage1st论坛动漫区带有“列举”标签的帖子
- // @version 1.1.1
- // @author @luoyianwu
- // @include https://bbs.saraba1st.com/2b/forum-6-*
- // @grant none
- // @run-at document-start
- // ==/UserScript==
- function nuke() {
- [
- 'em a[href="forum.php?mod=forumdisplay&fid=6&filter=typeid&typeid=179"]', // 列举贴
- 'a img[alt="投票"]', // 投票帖
- ].forEach(
- f => document.querySelectorAll(f).forEach(
- n => n.closest('tbody').remove()
- )
- );
- }
- document.addEventListener('load', nuke, true);
复制代码
|
评分
-
查看全部评分
|