// ==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 // @downloadURL none // ==/UserScript== (function() { 'use strict'; if(location.href.includes('https://getadblock.com/')) { window.close() } // Your code here... })();