Hide read01.com google ad

hide read01.com google ad

// ==UserScript==
// @name              Hide read01.com google ad
// @name:zh-CN        隐藏壹读google广告
// @namespace          vince.read01
// @version             1.0
// @description          hide read01.com google ad
// @description:zh-CN    隐藏壹读显示的google广告
// @author             vince ding
// @match              *://read01.com/*
// ==/UserScript==

function closeAd(){
    var css = '.axslot.axsense,.pure-u.sidebar{ display: none!important; }\r\n .main{width:100%!important;}',
        head = document.head || document.getElementsByTagName('head')[0],
        style = document.createElement('style');

    style.type = 'text/css';
    if (style.styleSheet){
        style.styleSheet.cssText = css;
    } else {
        style.appendChild(document.createTextNode(css));
    }

    head.appendChild(style);
}

closeAd();

QingJ © 2025

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