隐藏广告

隐藏jsoneditoronline的广告

// ==UserScript==
// @name         隐藏广告
// @namespace    http://tampermonkey.net/
// @description  隐藏jsoneditoronline的广告
// @version      2025-09-11
// @match        https://jsoneditoronline.org/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=jsoneditoronline.org
// @grant        GM_addStyle
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
        // 注入自定义 CSS
    GM_addStyle(`
        .ad-panel {
            display: none !important;
        }
    `);
})();