stop adblock page

sdasdasdasd!

As of 16.10.2024. See ბოლო ვერსია.

// ==UserScript==
// @name         stop adblock page
// @namespace    http://tampermonkey.net/
// @version      2024-10-16
// @description  sdasdasdasd!
// @author       massyao
// @run-at       document-start
// @match        https://getadblock.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=getadblock.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    if(location.href.includes('https://getadblock.com/')) {
        window.close()
    }
    // Your code here...
})();