www.baidu.com页面美化

美化搜索框,去除顶部菜单栏的背景颜色去除底部版权栏

目前為 2022-09-23 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         www.baidu.com页面美化
// @namespace    https://www.liuzhixi.cn/
// @version      1.2
// @description  美化搜索框,去除顶部菜单栏的背景颜色去除底部版权栏
// @author       刘小沫
// @match        *://www.baidu.com
// @icon         https://www.baidu.com/favicon.ico
// @grant        GM_addStyle
// @license      GPL License
// ==/UserScript==
function addStyle() {
    let css = `
    ::-webkit-scrollbar {
    display: none;
    }
    .s-skin-hasbg #head_wrapper .s_btn {
    background: #f68e5f;
    color: #fff;
    }
    .s-skin-hasbg #head_wrapper #form #kw:hover{border-color:#f78f5d}
    .s-skin-hasbg #head_wrapper #form #kw:focus{border-color:#f78f5d!important;}
    #bottom_layer{
    display: none;
    }
    .s-skin-hasbg #head_wrapper #form #kw {
    background: none;
    border-color: #f78f5d;
    }
    #head_wrapper .ipt_rec, #head_wrapper .soutu-btn {
    background: #fff0 url(https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/searchbox/nicon-10750f3f7d.png) no-repeat;
    }
    .s-skin-hasbg .s-top-wrap {
    background: rgb(0 0 0 / 0%);
    }
    .s-top-right .s-top-username {
    display: none;
    }
    #s-user-setting-menu{
    right: 0px!important;
    }
    `;
    GM_addStyle(css);
}
(function () {
    'use strict';
     addStyle();

})();