您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
百度首页(已登录)样式微调
// ==UserScript== // @name 百度首页样式微调 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 百度首页(已登录)样式微调 // @author IOL0ol1 // @match https://www.baidu.com/ // @grant none // ==/UserScript== (function() { 'use strict'; var bottom_layer = document.getElementById("bottom_layer"); bottom_layer.parentNode.removeChild(bottom_layer); var s_top_wrap = document.getElementById("s_top_wrap"); s_top_wrap.parentNode.removeChild(s_top_wrap); var s_upfunc_menus = document.getElementById("s_upfunc_menus"); s_upfunc_menus.parentNode.removeChild(s_upfunc_menus); var u_sp = document.getElementById("u_sp"); u_sp.parentNode.removeChild(u_sp); })();