Force MS Yahei Font Allowing Exceptions

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

O que é Force MS Yahei Font Allowing Exceptions?

Force MS Yahei Font Allowing Exceptions é uma extensão do Chrome desenvolvida por https://herohuyongtao.blogspot.com, e sua principal característica é "Use MS Yahei font for all sites with exceptions that can be user-defined.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Force MS Yahei Font Allowing Exceptions

Baixe arquivos de extensão Force MS Yahei Font Allowing Exceptions no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome 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
Descrição Use MS Yahei font for all sites with exceptions that can be user-defined.
Tamanho do Arquivo 37.51 KB
Contagem de Instalações 98
Versão Atual 7.0.0
Última Atualização 2019-12-26
Data de Publicação 2019-12-23
Classificação 4.33/5 Total de 6 Avaliações
Desenvolvedor https://herohuyongtao.blogspot.com
Tipo de Pagamento free
Site da Extensão https://gitlab.com/herohuyongtao/force-msyahei-for-chrome
URL da Página de Ajuda https://gitlab.com/herohuyongtao/force-msyahei-for-chrome/issues
Idiomas Suportados 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
    }
}