Force MS Yahei Font Allowing Exceptions

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

Vad är Force MS Yahei Font Allowing Exceptions?

Force MS Yahei Font Allowing Exceptions är en Chrome-tillägg utvecklad av https://herohuyongtao.blogspot.com, och dess huvudfunktion är "Use MS Yahei font for all sites with exceptions that can be user-defined.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Force MS Yahei Font Allowing Exceptions-förlängningens CRX-fil

Ladda ner Force MS Yahei Font Allowing Exceptions-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Force MS Yahei Font Allowing Exceptions Force MS Yahei Font Allowing Exceptions
ID dplldmamfgeklcbmjehjajfbafeimjaf
Officiell webbadress https://chromewebstore.google.com/detail/force-ms-yahei-font-allow/dplldmamfgeklcbmjehjajfbafeimjaf
Beskrivning Use MS Yahei font for all sites with exceptions that can be user-defined.
Filstorlek 37.51 KB
Antal Installationer 98
Aktuell Version 7.0.0
Senast Uppdaterad 2019-12-26
Publiceringsdatum 2019-12-23
Betyg 4.33/5 Totalt 6 Betyg
Utvecklare https://herohuyongtao.blogspot.com
Betalningssätt free
Tilläggswebbplats https://gitlab.com/herohuyongtao/force-msyahei-for-chrome
Hjälpsida URL https://gitlab.com/herohuyongtao/force-msyahei-for-chrome/issues
Stödda Språk 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
    }
}