Force MS Yahei Font Allowing Exceptions

Use MS Yahei font for all sites with exceptions that can be user-defined.

Force MS Yahei Font Allowing Exceptionsとは何ですか?

Force MS Yahei Font Allowing Exceptionsはhttps://herohuyongtao.blogspot.comによって開発されたChromeの拡張機能で、その主な機能は「Use MS Yahei font for all sites with exceptions that can be user-defined.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Force MS Yahei Font Allowing Exceptions拡張機能のCRXファイルをダウンロード

Force MS Yahei Font Allowing Exceptions拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This Chrome plugin will enable you to force using Microsoft Yahei font for all webistes allowing exceptions. These exceptions can be user defined in "Options".                    

拡張機能の基本情報

名前 Force MS Yahei Font Allowing Exceptions Force MS Yahei Font Allowing Exceptions
ID dplldmamfgeklcbmjehjajfbafeimjaf
公式URL https://chromewebstore.google.com/detail/force-ms-yahei-font-allow/dplldmamfgeklcbmjehjajfbafeimjaf
説明 Use MS Yahei font for all sites with exceptions that can be user-defined.
ファイルサイズ 37.51 KB
インストール数 98
現在のバージョン 7.0.0
最終更新日 2019-12-26
公開日 2019-12-23
評価 4.33/5 合計 6 レビュー
開発者 https://herohuyongtao.blogspot.com
支払い方法 free
拡張機能のウェブサイト https://gitlab.com/herohuyongtao/force-msyahei-for-chrome
ヘルプページのURL https://gitlab.com/herohuyongtao/force-msyahei-for-chrome/issues
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Force MS Yahei Font Allowing Exceptions",
    "description": "Use MS Yahei font for all sites with exceptions that can be user-defined.",
    "version": "7.0.0",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "font.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "font.css"
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options\/index.html",
        "chrome_style": true
    }
}