替换和美化网页字体

默认替换成雅黑,想要其它字体,更改Microsoft YaHei为其它字体名称即可。text-shadow可以更改字体阴影。

当前为 2022-01-09 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Replace fonts
  3. // @name:zh-CN 替换和美化网页字体
  4. // @namespace https://*
  5. // @version 1.0
  6. // @author chwt163
  7. // @description Replace web fonts
  8. // @description:zh-CN 默认替换成雅黑,想要其它字体,更改Microsoft YaHei为其它字体名称即可。text-shadow可以更改字体阴影。
  9. // @include *
  10. // @supportURL https://*
  11. // @run-at document-start
  12. // @grant GM_addStyle
  13. // @license MIT
  14. // ==/UserScript==
  15.  
  16. (function () {
  17. GM_addStyle(`
  18. :root body :not(:is(em,i)){font-family:"HarmonyOS Sans SC"}
  19. * {text-shadow : 0.00em 0.00em 0.00em #999999}
  20. `);
  21. })();

QingJ © 2025

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