Exirbroker Ads Remove

Remove Exirbroker Ads

// ==UserScript==
// @name         Exirbroker Ads Remove
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Remove Exirbroker Ads
// @author       Hamed Ap
// @match        https://modaber.exirbroker.com/login
// @icon         https://www.google.com/s2/favicons?domain=exirbroker.com
// @grant        none
// ==/UserScript==

(function() {
setInterval (function () {
    const modal = document.getElementById ('popupSlider');
    if (modal && modal.children.length !== 0) {
        const closeBtn = modal.querySelector ("a.js-modal-close");
        if (closeBtn) {
            closeBtn.click ();
        }
    }
}, 500);
})();