Skip to content

一些免费字体的woff2文件,仅用于非商业用途,若有侵犯相关权利,请联系删除。

Notifications You must be signed in to change notification settings

IlysvlVEizbr/via-font

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

via-font

一些免费字体的woff2文件,仅用于非商业用途,若有侵犯相关权利,请联系删除。


文件名对照表:

AliPuHui.woff2   --  阿里巴巴普惠体(Medium)
NaihuSC.woff2    --  濑户字体简体
xwFasmart.woff2  --  霞鹜尚智黑
xwWenKai.woff2   --  霞鹜文楷(等线, Bold)
zyYuanTi.woff2   --  资源圆体(Medium)

部分字体出处(目前找得到的):
阿里巴巴普惠体 https://alibabafont.taobao.com/wow/alibabafont/act/alifont
霞鹜系列 https://lxgw.github.io/


脚本使用示例

// ==UserScript==
// @name         更换字体
// @description  更换网页内容字体
// @author       Sky
// @version      0.3
// @run-at       document-start
// @match        *://*/*
// @grant        unsafeWindow
// @homepageURL  http://via-app.cn/#/pluginDetail/56
// @namespace    https://viayoo.com/
// ==/UserScript==
(function(){const
/*等号后的数表示选择的字体*/
 id = 3;
/* 0:阿里巴巴普惠体(Medium)
   1:濑户字体简体
   2:霞鹜尚智黑
   3:霞鹜文楷(等线, Bold)
   4:资源圆体(Medium) */
/*----以下勿改----*/
 try {
  let fn;
  switch(id){
   case 0:fn = "AliPuHui";break;
   case 1:fn = "NaihuSC";break;
   case 2:fn = "xwFasmart";break;
   case 3:fn = "xwWenKai";break;
   case 4:fn = "zyYuanTi";break;
   default:fn = "xwWenKai";
  }
  const css = document.createElement('link');
  css.href = "data:text/css,@font-face{font-family:via-font;src:url('https://cdn.jsdelivr.net/gh/IlysvlVEizbr/[email protected]/"+fn+".woff2')}html,*{font-family:via-font,sans-serif!important}";
  css.rel = 'stylesheet';
  document.head.append(css);
 } catch(err){console.log('更换字体:', err);}
})();

About

一些免费字体的woff2文件,仅用于非商业用途,若有侵犯相关权利,请联系删除。

Resources

Stars

Watchers

Forks

Packages

No packages published