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
官方網址 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"
    }
}