Greasy Fork

隐藏纳米搜索背景水印

隐藏n.cn纳米搜索背景水印

// ==UserScript==
// @name         隐藏纳米搜索背景水印
// @namespace    https://zscc.in
// @version      0.1
// @description  隐藏n.cn纳米搜索背景水印
// @author       船长zscc.in
// @match        https://*.n.cn/*
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';

    //  使用 CSS 隐藏
    GM_addStyle(`
        div[style*="z-index: 99"][style*="position: absolute"][style*="pointer-events: none"][style*="background-repeat: repeat"] {
            display: none !important;
            visibility: hidden !important;
        }
    `);
})();