System Font Everywhere

Use system font on the web

什么是System Font Everywhere?

System Font Everywhere是由S.J. Zhang开发的Chrome扩展程序,该扩展的主要功能是“Use system font on the web”。

扩展截图

screenshot
screenshot

下载System Font Everywhere扩展crx文件

下载System Font Everywhere扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Use this extension to apply System Fonts to the internet. Use San Francisco on macOS and Segoe UI on Windows 10 for the best legibility when you need to read, or on other sites with unfavorable font choices.                    

扩展基本信息

名称 System Font Everywhere System Font Everywhere
ID dcncgmembfephfbibnnigchndgncmdnj
官方URL https://chromewebstore.google.com/detail/system-font-everywhere/dcncgmembfephfbibnnigchndgncmdnj
简介 Use system font on the web
文件大小 644 KB
安装次数 317
当前版本 0.0.3
更新时间 2022-12-12
上架时间 2020-03-06
评分 2.60/5 共5次评分
开发者 S.J. Zhang
电子邮箱 [email protected]
付费类型 free
扩展官网 https://sj.land
帮助页面URL https://sj.land
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "System Font Everywhere",
    "short_name": "SF Everywhere",
    "version": "0.0.3",
    "description": "Use system font on the web",
    "action": {
        "default_title": "System Font Everywhere",
        "default_icon": "off-icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "match_about_blank": true,
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "exclude_globs": [
                "*\/chrome\/newtab*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        ""
    ],
    "icons": {
        "128": "128.png"
    }
}