Greasy Fork

百度首页底栏去除

将百度首页foot底栏的bottom_layer标签去除掉,使其首页简单美观又不清除百度的主要功能快捷入口。

目前为 2023-07-27 提交的版本。查看 最新版本

// ==UserScript==
// @name         百度首页底栏去除
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  将百度首页foot底栏的bottom_layer标签去除掉,使其首页简单美观又不清除百度的主要功能快捷入口。
// @author       ylgzs666
// @match        https://www.baidu.com/
// @icon         https://www.baidu.com/favicon.ico
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
  $('#bottom_layer').remove()
})();