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