System Fonts

Use system default fonts across the web

  1. // ==UserScript==
  2. // @name System Fonts
  3. // @include http*
  4. // @locale en
  5. // @version 0.20
  6. // @description Use system default fonts across the web
  7. // @author Danny J Kendall (MANICX100)
  8. // @grant none
  9. // @namespace https://gf.qytechs.cn/users/169145
  10.  
  11. // ==/UserScript==
  12.  
  13.  
  14. var s = document.createElement("style");
  15. s.type = "text/css";
  16. s.textContent = "* { font-family: Bahnschrift, -apple-system,BlinkMacSystemFont, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Droid Sans, Helvetica Neue, sans-serif !important; }";
  17.  
  18. document.head.appendChild(s);

QingJ © 2025

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