Automatic Button Click

Closes the "Adblocker Enabled" notification for you.

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 or Violentmonkey 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         Automatic Button Click
// @author       Rahatul Ghazi | ChatGPT
// @description  Closes the "Adblocker Enabled" notification for you.
// @version 1.0
// @license MIT
// @match        https://intro-hd.net/*
// @grant        none
// @namespace https://greasyfork.org/users/1226730
// ==/UserScript==

(function() {
    'use strict';

    let buttonClicked = false;

    function clickButton() {
        if (buttonClicked) {
            return; // Stop checking if the button has been clicked
        }

        let button = document.querySelector('.mdpDeblocker-close');
        if (button) {
            button.click();
            buttonClicked = true; // Set the flag to true after clicking
        } else {
            setTimeout(clickButton, 1000); // Check again in 1 second
        }
    }

    // Wait for the page to load fully
    window.addEventListener('load', function() {
        clickButton(); // Start checking for the button
    });
})();