您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
可以清除一些奇怪的ui,以避免密恐发作。
// ==UserScript== // @name nga去除删除水印 // @version 0.1 // @description 可以清除一些奇怪的ui,以避免密恐发作。 // @author monat151 // @grant none // @run-at document-end // @match http*://bbs.nga.cn/read.php* // @match http*://nga.178.com/read.php* // @match http*://ngabbs.com/read.php* // @namespace https://greasyfork.org/users/325815 // ==/UserScript== const delay = 100; // 等待时间,脚本不生效时请自行调整 setTimeout(function(){ var c2s = document.getElementsByClassName('c2'); for(var i=0;i<c2s.length;i++){ let c2 = c2s[i]; if(c2.style && c2.style.backgroundImage){ c2.style.backgroundImage = ''; } } }, delay);