默认雅黑字体

修改默认字体为 微软雅黑(Microsoft YaHei)

  1. // ==UserScript==
  2. // @name 默认雅黑字体
  3. // @version 1.3
  4. // @description 修改默认字体为 微软雅黑(Microsoft YaHei)
  5. // @author QIQI
  6. // @match *://*/*
  7. // @grant none
  8. // @run-at document-start
  9. // @namespace https://gf.qytechs.cn/users/16216
  10. // ==/UserScript==
  11. (function(){
  12. var prependChild = function(o,s){
  13. if(s.hasChildNodes()){
  14. s.insertBefore(o,s.firstChild);
  15. }else{
  16. s.appendChild(o);
  17. }
  18. };
  19. var element = document.createElement("link");
  20. element.rel="stylesheet";
  21. element.type="text/css";
  22. element.href="data:text/css,*{font-family:\"Microsoft YaHei\"}";
  23. if(window.location.href=="http://tool.chinaz.com/regex" || window.location.href=="http://tool.chinaz.com/regex/"){
  24. element.href+=" #inputText,#inputBg,#searchText,#searchBg,#inputBg *,#searchBg *{font: 100% \"courier new\",monospace;}";
  25. }else if(window.location.hostname=="tv.daoapp.io" && window.location.search.indexOf("?editor/edit")!=-1){
  26. element.href+=" .edit_body *{ font-family: Consolas, \"Liberation Mono\", Menlo, Courier, monospace !important;}";
  27. }
  28. prependChild(element,document.documentElement);
  29. })();

QingJ © 2025

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