Replace fonts

Replace web fonts

目前為 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:"Microsoft YaHei"}
  19. * {text-shadow : 0.00em 0.00em 0.00em #999999}
  20. `);
  21. })();