您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
百度皮肤
- // ==UserScript==
- // @name Baidu
- // @namespace http://tampermonkey.net/
- // @version 0.3
- // @description 百度皮肤
- // @author Victor
- // @match https://www.baidu.com/*
- // @icon https://www.google.com/s2/favicons?domain=manongjc.com
- // @grant none
- // @icon https://p0.meituan.net/dpgroup/cc8b105052c5ebadefa85d57404ef6fc45399.jpg
- // @license MIT
- // ==/UserScript==
- (function() {
- 'use strict';
- function up() {
- $(".mnav").css({'color':'rgb(255 157 196 / 85%)'})
- $(".c-font-normal ").css({'color':'rgb(255 157 196 / 85%)'})
- document.getElementById('head').style.background = '#fff0'
- $(".s-skin-hasbg").css({'background':'rgb(255 255 255 / 0)'})
- $(".s-top-wrap").css({'background':'rgb(255 255 255 / 0)'})
- $("#bottom_layer").remove()
- $("#s-hotsearch-wrapper").remove()
- $("#hotsearch-content-wrapper").remove()
- $("#s_side_wrapper").remove()
- $("#u1").remove()
- $("html").css({"overflow-y":"auto"})
- document.getElementById('kw').setAttribute("placeholder","哥哥从这儿进~·~")
- }
- up()
- })();