Greasy Fork

百度首页净化

将百度首页foot底栏的bottom_layer标签/辅助模式s_side_wrapper按钮/输入框内的热搜提示词去除,使其首页简单美观又不清除首页上方的主要功能快捷入口。

目前为 2024-12-22 提交的版本。查看 最新版本

// ==UserScript==
// @name         百度首页净化
// @namespace    http://tampermonkey.net/
// @version      2.0
// @description  将百度首页foot底栏的bottom_layer标签/辅助模式s_side_wrapper按钮/输入框内的热搜提示词去除,使其首页简单美观又不清除首页上方的主要功能快捷入口。
// @author       ylgzs666
// @match        https://www.baidu.com/*
// @icon         https://www.baidu.com/favicon.ico
// @grant        none
// @license      MIT
// ==/UserScript==

(function () {
    'use strict';
    $('#bottom_layer').remove()
    $('#s_side_wrapper').remove()
    var kw=document.createElement('style');
    kw.innerText='#kw::placeholder{color: #00000000 !important;}';
    document.head.appendChild(kw);
})();