reddit-Umaru_Chan | 1 points | Dec 16 2021 10:45:54
去除post里的Blocked account只针对PC端,请先安装好Tampermonkey
``` js // ==UserScript== // @name New Userscript // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @grant none // @include .reddit.com/* // ==/UserScript==
(function () { "use strict";
// Your code here...
var dom;
var wrapper;
setInterval(() =&rt; {
dom = document.querySelectorAll("p");
wrapper = dom.forEach((item) =&rt; {
if (item.innerHTML.trim() === "Blocked account") {
var node =
item.parentNode.parentNode.parentNode.parentNode.parentNode
.parentNode.parentNode.parentNode.parentNode;
node.remove();
}
});
}, 5000);
})();
``` 使用步骤: 1. 安装好Tampermonkey后点击扩展图标, 2. 添加新脚本 3. 把里面的默认内容清空 4. 然后复制上面的代码粘贴 5. ctrl+S保存 6. 到已安装脚本里面把这个脚本启用 7. 重新打开红迪
原理:每5秒查找页面上的Blocked account关键字,然后删除父元素,还你一片清净.
是,存在性能问题.但是能用
[-] No-Battle-8981 | 1 points | Dec 16 2021 10:56:43
Blocked account是什么东西?
[-] reddit-Umaru_Chan | 1 points | Dec 16 2021 11:14:10
被你拉黑的人在post里的回复会显示为Blocked account
以前是不会显示的,被你拉黑就再也感觉不到他的存在.
但从某个版本起.就多出了个这么个恶心人的玩意儿
红迪死妈也不是一天两天了