您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove the anti-adblocker popup.
// ==UserScript== // @name Anti-Adblocker-Killer for Cnbeta.com.tw // @version 0.2 // @description Remove the anti-adblocker popup. // @author Eric Qian // @match https://www.cnbeta.com.tw/* // @icon https://www.google.com/s2/favicons?sz=64&domain=cnbeta.com.tw // @grant none // @namespace https://greasyfork.org/users/1240870 // ==/UserScript== (function() { var aak = function(i) { setTimeout(function() { var d = document.querySelectorAll('div.fc-ab-root'); d.forEach(function(element) { element.remove(); }); var b = document.body; b.setAttribute('style', ''); }, i * 50); }; var len = 20; for (var i = 0; i < len; i++) { aak(i); } })();