删除Google赞助者广告

自动隐藏Google搜索界面的赞助者广告

// ==UserScript==
// @name         删除Google赞助者广告
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  自动隐藏Google搜索界面的赞助者广告
// @author       SnowTick
// @match        https://www.google.com/search?*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        GM_addStyle
// @license      MIT
// ==/UserScript==
(function() {
    'use strict';

    // 创建一个 MutationObserver 实例
    const observer = new MutationObserver(() => {
        GM_addStyle(`
            .vdQmEd.fP1Qef.xpd.EtOod.pkphOe {
                display: none !important; /* 隐藏元素 */
            }
        `);
    });

    // 配置 Observer 监听页面的所有变化
    observer.observe(document.body, {
        childList: true, // 监听子元素的变化
        subtree: true // 监听整个 DOM 树的变化
    });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址