Greasy Fork

Greasy Fork is available in English.

TypeScript中文网广告隐藏

使用css样式隐藏TypeScript中文网广告

目前为 2025-05-15 提交的版本。查看 最新版本

// ==UserScript==
// @name         TypeScript中文网广告隐藏
// @namespace
// @include      *://ts.nodejs.cn
// @include      *://ts.nodejs.cn/*
// @version      0.0.2
// @description  使用css样式隐藏TypeScript中文网广告
// @author       ymzhao
// @namespace 
// @license      MIT
// @grant        GM_addStyle
// ==/UserScript==
GM_addStyle(`
    #bottomad, /* 底部广告 */
    .adsbygoogle /* 全屏谷歌广告 */
    {
        display: none !important;
    }
`);