Force MS Yahei Font Allowing Exceptions

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

Cos'è Force MS Yahei Font Allowing Exceptions?

Force MS Yahei Font Allowing Exceptions è un'estensione di Chrome sviluppata da https://herohuyongtao.blogspot.com, e la sua funzione principale è "Use MS Yahei font for all sites with exceptions that can be user-defined.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Force MS Yahei Font Allowing Exceptions

Scarica i file di estensione Force MS Yahei Font Allowing Exceptions in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Force MS Yahei Font Allowing Exceptions Force MS Yahei Font Allowing Exceptions
ID dplldmamfgeklcbmjehjajfbafeimjaf
URL Ufficiale https://chromewebstore.google.com/detail/force-ms-yahei-font-allow/dplldmamfgeklcbmjehjajfbafeimjaf
Descrizione Use MS Yahei font for all sites with exceptions that can be user-defined.
Dimensione del File 37.51 KB
Conteggio Installazioni 98
Versione Corrente 7.0.0
Ultimo Aggiornamento 2019-12-26
Data di Pubblicazione 2019-12-23
Valutazione 4.33/5 Totale 6 Valutazioni
Sviluppatore https://herohuyongtao.blogspot.com
Tipo di Pagamento free
Sito Web dell'Estensione https://gitlab.com/herohuyongtao/force-msyahei-for-chrome
URL della Pagina di Aiuto https://gitlab.com/herohuyongtao/force-msyahei-for-chrome/issues
Lingue Supportate 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
    }
}