// ==UserScript== // @name Anti-Adblocker-Killer for Cnbeta.com.tw // @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 // @version 0.0.1.20250104141809 // @namespace https://greasyfork.org/users/1240870 // @downloadURL none // ==/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 = 10; for (var i = 0; i < len; i++) { aak(i); } })();