Force MS Yahei Font Allowing Exceptions

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

¿Qué es Force MS Yahei Font Allowing Exceptions?

Force MS Yahei Font Allowing Exceptions es una extensión de Chrome desarrollada por https://herohuyongtao.blogspot.com, y su función principal es "Use MS Yahei font for all sites with exceptions that can be user-defined.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Force MS Yahei Font Allowing Exceptions

Descarga archivos de extensión Force MS Yahei Font Allowing Exceptions en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Force MS Yahei Font Allowing Exceptions Force MS Yahei Font Allowing Exceptions
ID dplldmamfgeklcbmjehjajfbafeimjaf
URL Oficial https://chromewebstore.google.com/detail/force-ms-yahei-font-allow/dplldmamfgeklcbmjehjajfbafeimjaf
Descripción Use MS Yahei font for all sites with exceptions that can be user-defined.
Tamaño del Archivo 37.51 KB
Cantidad de Instalaciones 98
Versión Actual 7.0.0
Última Actualización 2019-12-26
Fecha de Publicación 2019-12-23
Calificación 4.33/5 Total de 6 Calificaciones
Desarrollador https://herohuyongtao.blogspot.com
Tipo de Pago free
Sitio Web de la Extensión https://gitlab.com/herohuyongtao/force-msyahei-for-chrome
URL de la Página de Ayuda https://gitlab.com/herohuyongtao/force-msyahei-for-chrome/issues
Idiomas Soportados 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
    }
}