Greasy Fork is available in English.
自动隐藏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 树的变化
});
})();