Force MS Yahei Font Allowing Exceptions

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

Co je Force MS Yahei Font Allowing Exceptions?

Force MS Yahei Font Allowing Exceptions je rozšíření Chrome vyvinuté https://herohuyongtao.blogspot.com, a jeho hlavní funkcí je „Use MS Yahei font for all sites with exceptions that can be user-defined.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Force MS Yahei Font Allowing Exceptions

Stáhněte si soubory rozšíření Force MS Yahei Font Allowing Exceptions ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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".                    

Základní Informace o Rozšíření

Název Force MS Yahei Font Allowing Exceptions Force MS Yahei Font Allowing Exceptions
ID dplldmamfgeklcbmjehjajfbafeimjaf
Oficiální URL https://chromewebstore.google.com/detail/force-ms-yahei-font-allow/dplldmamfgeklcbmjehjajfbafeimjaf
Popis Use MS Yahei font for all sites with exceptions that can be user-defined.
Velikost souboru 37.51 KB
Počet instalací 98
Aktuální Verze 7.0.0
Poslední Aktualizace 2019-12-26
Datum Vydání 2019-12-23
Hodnocení 4.33/5 Celkem 6 Hodnocení
Vývojář https://herohuyongtao.blogspot.com
Typ Platby free
Webové stránky Rozšíření https://gitlab.com/herohuyongtao/force-msyahei-for-chrome
URL Stránky Nápovědy https://gitlab.com/herohuyongtao/force-msyahei-for-chrome/issues
Podporované Jazyky 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
    }
}