System Fonts

Use system default fonts across the web

// ==UserScript==
// @name         System Fonts
// @include      http*
// @locale      en
// @version      0.20
// @description  Use system default fonts across the web
// @author       Danny J Kendall (MANICX100)
// @grant        none
// @namespace https://gf.qytechs.cn/users/169145

// ==/UserScript==


var s = document.createElement("style");
s.type = "text/css";
s.textContent = "* { font-family: Bahnschrift, -apple-system,BlinkMacSystemFont, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Droid Sans, Helvetica Neue, sans-serif !important; }";

document.head.appendChild(s);

QingJ © 2025

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