百度搜索框样式

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

目前为 2020-07-09 提交的版本。查看 最新版本

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

QingJ © 2025

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