try to take over the world!
当前为
// ==UserScript==
// @name clean baidu index
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.baidu.com/
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.getElementById("bottom_container").remove();
document.getElementById("s_upfunc_menus").remove();
document.getElementById("u_sp").remove();
document.getElementById("lg").remove();
document.getElementById("su").value = "百度一下"
// Your code here...
})();