cleanHackrIOAds

clean hackr.io ads

// ==UserScript==
// @name         cleanHackrIOAds
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  clean hackr.io ads
// @author       [email protected]
// @match        hackr.io/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=hackr.io
// @grant        none
// @license      MIT
// @run-at       document-body
// ==/UserScript==

(function() {
    'use strict';
    var css = [
        '[class*="ezoic-ad"],.primis-placeholder',
        '{display:none!important}',
       ].join('')
    var style = document.createElement('style');
    style.innerText = css;
    document.body.previousElementSibling.appendChild(style);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址