NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Fakti.bg: remove adblock message // @version 1 // @license MIT // @copyright 2019, mitev.joro (https://openuserjs.org/users/mitev.joro) // @grant none // @match https://fakti.bg/* // @require http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js // ==/UserScript== var factiBgKillAdBlockBlock = setInterval(function() { if ($('#adsblock-msg').length) { // $('#adsblock-msg').css("display", "none !important"); $('#adsblock-msg').css("display", "none"); clearInterval(factiBgKillAdBlockBlock); // alert('done1'); } }, 1000)