Greasy Fork is available in English.

nodejs中文网广告隐藏

简单的nodejs中文网广告隐藏

// ==UserScript==
// @name         nodejs中文网广告隐藏
// @namespace
// @include      *://nodejs.cn/*
// @version      0.0.1
// @description  简单的nodejs中文网广告隐藏
// @author       ymzhao
// @namespace 
// @license      MIT
// @grant        GM_addStyle
// ==/UserScript==
GM_addStyle(`
    [id*=pagead]
    {
        display: none !important;
    }
`);