由于某些人经常标题党,发一些无用信息,看见恶心,写了个油猴脚本,在浏览论坛时候,可以屏蔽他的帖子,做到眼不见心为净。
使用效果(拿阿呆做下测试):
开启脚本前:
开启脚本后:
脚本代码如下(不会使用油猴的百度吧):
// ==UserScript==
// @name 大佬论坛屏蔽某些人
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 拒绝标题党,拒绝无用垃圾信息
// @author xinghehy
// @match *://dalao.net/*
// @match *://www.dalao.net/*
// ==/UserScript==
(function() {
var uidList = ["1", "2", "3"]; // 设置要屏蔽的uid列表
var liElements = document.querySelectorAll('li.media.thread.tap');
liElements.forEach(function(liElement) {
var uid = liElement.querySelector('.username.text-grey').getAttribute('uid');
if (uidList.includes(uid)) {
liElement.style.display = 'none';
console.log("已屏蔽此页uid为"+uid+"的信息");
}
});
})();
老婆饼里没有老婆,大佬论坛里是真有大佬✔️
接各类网站开发