Animeszone ANTI-AD-DIV

Tira a div que aparece quando vc usa adblock

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Animeszone ANTI-AD-DIV
// @namespace    http://tampermonkey.net/
// @version      24.69.1v
// @description  Tira a div que aparece quando vc usa adblock
// @author       Snowing comedor de casadas
// @match        https://animeszone.net/*
// @icon         https://openai.com/favicon.ico


// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    
    function removeAdBox() {
        
        var divToRemove = document.getElementById("show_adblock");

       
        if (divToRemove) {
            divToRemove.remove();
        }
    }

    
    window.onload = removeAdBox;

    
    setInterval(removeAdBox, 1000); 
//sim eu usei o chat gpt.
})();