百度搜索框样式

百度搜索框样式修改,去掉了圆形边角

  1. // ==UserScript==
  2. // @name 百度搜索框样式
  3. // @namespace http://tampermonkey.net/
  4. // @icon https://www.baidu.com/favicon.ico
  5. // @version 0.2
  6. // @license MIT
  7. // @description 百度搜索框样式修改,去掉了圆形边角
  8. // @author renjiaxin
  9. // @match https://www.baidu.com/*
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. document.getElementById("su").style.cssText="background-color: lightskyblue;color: #8A2BE2; font-family: 华文楷体; font-size: 22px;border-radius:0 0 0 0px";
  15. var sss = document.getElementsByClassName("bg s_ipt_wr quickdelete-wrap");
  16. var legt = sss.length;
  17. for(let i =0; i< legt; i++){
  18. sss[i].style.cssText="border-radius:0 0 0 0px";
  19. }
  20.  
  21.  
  22. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址