Greasy Fork is available in English.
需要存在adsbygoogle class样式
// ==UserScript== // @name 移除google广告 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 需要存在adsbygoogle class样式 // @author niushuai233 // @match https://*.52pojie.cn/** // @match http://greasyfork.icu/** // @icon https://avatar.52pojie.cn/images/noavatar_small.gif // @require https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js // @license MIT // @grant none // ==/UserScript== (function() { 'use strict'; $(".adsbygoogle").remove(); })();