reddit-Umaru_Chan | 1 points | Dec 16 2021 10:27:21
去除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);
})();
```
新建自己的脚本,先把默认清空,然后复制上面的代码粘贴保存就OK
[-] Ok-Beautiful-3496 | 1 points | Dec 16 2021 12:29:49
给js大手子点个赞