您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
隐藏 Microsoft Bing 搜索页顶部的标志
// ==UserScript== // @name 移除Bing搜索页顶部标志 // @namespace http://tampermonkey.net/ // @version 1.0 // @description 隐藏 Microsoft Bing 搜索页顶部的标志 // @author You // @match *://www.bing.com/search* // @grant none // ==/UserScript== (function() { 'use strict'; // 等待页面加载 function removeBingLogo() { let logo = document.querySelector('header'); // 选择 Bing 头部区域 if (logo) { logo.style.display = 'none'; } } // 观察 DOM 变化,确保动态加载时仍然能隐藏 let observer = new MutationObserver(removeBingLogo); observer.observe(document.body, { childList: true, subtree: true }); // 初始执行 removeBingLogo(); })();