|
发表于 2024-6-21 23:18:51| 字数 3,503| - 中国–广东–茂名 电信
|
显示全部楼层
本帖最后由 临江独钓 于 2024-6-21 23:28 编辑
论坛黑名单的基础上,加上这个脚本更好用。
暴力猴中添加脚本。
var ID = new Array那一行添加想屏蔽的用户名。
文件头那几行中括号url要删掉。奇怪,添加代码的时候,自动就有了
算了,文件头那几行直接贴在下一楼了
- // ==UserScript==
- //[url=home.php?mod=space&uid=59112]@name[/url] 51nb-52pojie 黑名单-屏蔽指定用户帖子(Discuz论坛通用)
- // @namespace Violentmonkey Scripts
- // [url=home.php?mod=space&uid=189729]@author[/url] https://www.52pojie.cn/thread-1058012-1-1.html
- // @description 屏蔽与相应用户有关的所有内容,来源于网络(Discuz 论坛通用!)
- //@include http*://*www.ibmnb.com/*
- // @include http*://*thinkpad.cn/*
- // @include http*://*thinkpad.com.cn/*
- //@grant none
- // [url=home.php?mod=space&uid=1658303]@version[/url] 1.0
- // ==/UserScript==
- var ID = new Array("kevinthinkpad","违规请给理由","联想铁粉"); //用户名屏蔽列表 备注: 如需屏蔽多人 按照 "用户名1","用户名2" 格式
- var displaymessage = false; //如不需要显示屏蔽提示 请将"true"改为"false"
- for (var x in ID) {
- thread = document.evaluate('//table/tbody[tr[1]/td[2]//cite/a[text()="' + ID[x] + '"]]', document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
- if (thread.snapshotLength) {
- for (var i = 0; i < thread.snapshotLength; i++) {
- if(displaymessage) {
- thread.snapshotItem(i).innerHTML = "<tr><td class='icn'><img src='static/image/common/folder_common.gif' /></a></td><th class='common'><b>已屏蔽主题 " + "<font color=grey></th><td class='by'><cite><font color=grey>" + ID[x] + "</font></cite></td><td class='num'></td><td class='by'></td></tr>";
- }
- else {
- thread.snapshotItem(i).innerHTML = "";
- }
- }
- }
- guide = document.evaluate('//table/tbody[tr[1]/td[3]//cite/a[text()="' + ID[x] + '"]]', document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
- if (guide.snapshotLength) {
- for (var i = 0; i < guide.snapshotLength; i++) {
- if(displaymessage) {
- guide.snapshotItem(i).innerHTML = "<tr><td class='icn'><img src='static/image/common/folder_common.gif' /></a></td><th class='common'><b>已屏蔽主题 " + "<font color=grey></th><td class='by'><cite><font color=grey>" + ID[x] + "</font></cite></td><td class='num'></td><td class='by'></td></tr>";
- }
- else {
- guide.snapshotItem(i).innerHTML = "";
- }
- }
- }
- post = document.evaluate('//table/tbody[tr[1]/td[1]//a[text()="' + ID[x] + '"]]', document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
- if (post.snapshotLength) {
- for (var i = 0, c = ""; i < post.snapshotLength; i++) {
- c = post.snapshotItem(i).firstChild.childNodes[3].textContent.replace(/\s*/g, "").slice(0, 3);
- c = (Number(c) > 99) ? c + "#" : c;
- if(displaymessage) {
- post.snapshotItem(i).innerHTML = "<center>已屏蔽" + " <font color=grey>" + ID[x] + "</font></center>";
- }
- else {
- post.snapshotItem(i).innerHTML = "";
- }
- }
- }
- quote = document.evaluate('//blockquote[font/a/font[contains(text(),"' + ID[x] + '")]]', document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
- if (quote.snapshotLength) {
- for (var i = 0; i < quote.snapshotLength; i++) {
- if(displaymessage) {
- quote.snapshotItem(i).innerHTML = '已屏蔽引用 <font color=grey>' + ID[x] + '</font>的言论';
- }
- else {
- quote.snapshotItem(i).innerHTML = '<br />';
- }
- }
- }
- title = document.evaluate('//table/tbody[tr[1]/th[1]//a[contains(text(),"' + ID[x] + '")]]', document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
- if (title.snapshotLength) {
- for (var i = 0, c = ""; i < title.snapshotLength; i++) {
- title.snapshotItem(i).innerHTML = "";
- }
- }
- }
复制代码
|
|