百度简化

百度简化

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// ==UserScript==
// @name 百度简化
// @version 1.0.1
// @description 将百度的搜索页面变得简洁
// @author Garmin
// @match *://www.baidu.com/*
// ==/UserScript==

(function() {
'use strict';
let a = document.getElementById("su");
a.value ="简洁搜索";
a.title ="young在搞一些奇奇怪怪的东西";
document.getElementById("s_main").remove();
document.getElementById("s-top-left").remove();
document.getElementById("u1").remove();
document.getElementById("bottom_layer").remove();
document.getElementById("head_wrapper").style.height='60%';
document.querySelector(".soutu-btn").remove();

})();