EVERIA.CLUB 移除点击广告

EVERIA.CLUB 偶尔点击会出现广告,移除这种恼人的特性。

// ==UserScript==
// @name         EVERIA.CLUB 移除点击广告
// @namespace    http://fxxkads.xxx/
// @license      WTFPL
// @version      2024-07-22
// @description  EVERIA.CLUB 偶尔点击会出现广告,移除这种恼人的特性。
// @author       underbed
// @match        https://everia.club/*
// @match        https://*.everia.club/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=everia.club
// @grant        none
// @run-at       document-start
// ==/UserScript==

(function() {
    'use strict';

    let __oldAddEventListener__ = window.addEventListener;
    window.addEventListener = function(type, listener, options) {
        if (type == 'load') {
            if (listener.toString().includes('popMagic')) {
                console.log('已经屏蔽的方法:', listener);
                return;
            }
        }
        if (arguments.length < 3) {
            __oldAddEventListener__(type, listener, false);
        } else {
            __oldAddEventListener__(type, listener, options);
        }
    }
})();