Greasy Fork is available in English.
改百度下面的白色为透明,优化顶部栏
当前为
// ==UserScript==
// @name 优化百度首页
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 改百度下面的白色为透明,优化顶部栏
// @author You
// @match https://www.baidu.com/
// @grant none
// ==/UserScript==
(function() {
'use strict';
//$("#s-top-left").remove();//去除顶部栏
//$("#s_top_wrap").remove();//去除顶部栏
$("#bottom_layer").css("background","none");
$("html").css("overflow-y","hidden");
})();