Greasy Fork

stop adblock page

sdasdasdasd!

目前为 2024-10-16 提交的版本。查看 最新版本

// ==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...
})();