Baidu

百度皮肤

  1. // ==UserScript==
  2. // @name Baidu
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.3
  5. // @description 百度皮肤
  6. // @author Victor
  7. // @match https://www.baidu.com/*
  8. // @icon https://www.google.com/s2/favicons?domain=manongjc.com
  9. // @grant none
  10. // @icon https://p0.meituan.net/dpgroup/cc8b105052c5ebadefa85d57404ef6fc45399.jpg
  11. // @license MIT
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16. function up() {
  17. $(".mnav").css({'color':'rgb(255 157 196 / 85%)'})
  18. $(".c-font-normal ").css({'color':'rgb(255 157 196 / 85%)'})
  19. document.getElementById('head').style.background = '#fff0'
  20. $(".s-skin-hasbg").css({'background':'rgb(255 255 255 / 0)'})
  21. $(".s-top-wrap").css({'background':'rgb(255 255 255 / 0)'})
  22. $("#bottom_layer").remove()
  23. $("#s-hotsearch-wrapper").remove()
  24. $("#hotsearch-content-wrapper").remove()
  25. $("#s_side_wrapper").remove()
  26. $("#u1").remove()
  27. $("html").css({"overflow-y":"auto"})
  28. document.getElementById('kw').setAttribute("placeholder","哥哥从这儿进~·~")
  29. }
  30. up()
  31.  
  32. })();