// ==UserScript== // @name stop Adblock page // @namespace http://tampermonkey.net/ // @version 0.2 // @description sdasdasdasd! // @author massyao // @run-at document-start // @match https://getadblock.com/* // @match https://adblockplus.org/* // @icon https://www.google.com/s2/favicons?sz=64&domain=getadblock.com // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; const page_list = [ 'adblockplus.org', 'getadblock.com' ]; if(page_list.any(domin => location.href.includes(domin))) { window.close() } // Your code here... })();