// ==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 // @downloadURL none // ==/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(); })();