您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes Asura Scans comments
当前为
// ==UserScript== // @name Asura Scans Comments Remover // @namespace Violentmonkey Scripts // @match https://asuracomic.net/* // @grant none // @version 1.0 // @author Jacob68 // @description Removes Asura Scans comments // @license GNU GPLv3 // ==/UserScript== (function() { function removeThread() { const element = document.querySelector('.p-4.space-y-4'); if (element) { element.remove(); console.log("Thread Removed"); return true; } return false; } removeThread(); const observer = new MutationObserver(() => { if (removeThread()) { observer.disconnect(); } }); observer.observe(document.body, { childList: true, subtree: true, }); setTimeout(() => observer.disconnect(), 5000); })();