您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes stupid cw threads
// ==UserScript== // @name cw remover // @namespace http://tampermonkey.net/ // @version 0.69 // @description Removes stupid cw threads // @author Jesus Christ // @match https://v3rmillion.net/* // @icon https://stepbrofurious.xyz/favicon.png // @license MIT // @grant none // ==/UserScript== $(document).ready(function () { var oldsub = Array.prototype.slice.call(document.getElementsByClassName("subject_new"), 0); var newsub = Array.prototype.slice.call(document.getElementsByClassName("subject_new"), 0); var threads = oldsub.concat(newsub); for (var i = 0; i < threads.length; i++) { if (threads[i].innerHTML.toLowerCase().search("cw") !== -1) { var element = threads[i].parentNode.parentNode.parentNode console.log("deleted a shitty cw thread") element.parentNode.remove(element); } } });