使用油猴脚本去除百度热搜

607次阅读
没有评论

共计 1065 个字符,预计需要花费 3 分钟才能阅读完成。

虽然 AI 时代来临,但是有时候也得使用百度搜索,每次搜索时候在左边总是显示最新的新闻标题诱惑我,我们需要用谷歌浏览器安装油猴脚本 tampermonkey

下载地址:https://www.tampermonkey.net/index.php?ext=dhdg&version=5.1.1

好几个版本,根据浏览器下载

使用油猴脚本去除百度热搜

安装之后,点击弹出选项,点击添加新脚本

使用油猴脚本去除百度热搜

会出现一个编辑栏,把以下代码复制过去,然后保存。

// ==UserScript==
// @name       百度热搜去除
// @namespace    http://tampermonkey.net/
// @version      2024-07-11
// @description  百度热搜去除
// @author       xstplan
// @match        https://www.baidu.com/*
// @match        http://www.baidu.com/*
// @match        https://baidu.com/*
// @match        http://baidu.com/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @require      http://code.jquery.com/jquery-migrate-1.2.1.min.js
// @grant        GM_listValues
// ==/UserScript==
// 使用立即执行函数表达式 (IIFE) 来封装我们的代码,防止污染全局命名空间
(() => {
    'use strict';

    // 定义一个函数来移除广告
    const removeAD = () => {const adElements = document.querySelectorAll('.FYB_RD');
        adElements.forEach(adElement => adElement.style.display = 'none');
    };

    // 当文档加载完成时调用 removeAD 函数
    document.addEventListener('DOMContentLoaded', removeAD);

    // 监听 DOM 变化并移除广告
    const observer = new MutationObserver(removeAD);
    observer.observe(document.body, { childList: true, subtree: true});
})();
使用油猴脚本去除百度热搜

在已安装脚本中点击启用。

然后登录百度搜索,就会没有热搜了。干净又卫生。

正文完
 0
XSTPLAN
版权声明:本站原创文章,由 XSTPLAN 于2024-07-18发表,共计1065字。
转载说明:本站所有资源和文章版权归作者所有,未经授权禁止转载。如有转载或引用,请注明来源。
评论(没有评论)