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
Eメール [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"
    }
}