Force MS Yahei Font Allowing Exceptions

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

Hvad er Force MS Yahei Font Allowing Exceptions?

Force MS Yahei Font Allowing Exceptions er en Chrome-udvidelse udviklet af https://herohuyongtao.blogspot.com, og dens hovedfunktion er "Use MS Yahei font for all sites with exceptions that can be user-defined.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Force MS Yahei Font Allowing Exceptions-udvidelses-CRX-fil

Download Force MS Yahei Font Allowing Exceptions-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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æggende oplysninger om udvidelsen

Navn Force MS Yahei Font Allowing Exceptions Force MS Yahei Font Allowing Exceptions
ID dplldmamfgeklcbmjehjajfbafeimjaf
Officiel URL https://chromewebstore.google.com/detail/force-ms-yahei-font-allow/dplldmamfgeklcbmjehjajfbafeimjaf
Beskrivelse Use MS Yahei font for all sites with exceptions that can be user-defined.
Filstørrelse 37.51 KB
Antal Installationer 98
Nuværende Version 7.0.0
Senest Opdateret 2019-12-26
Udgivelsesdato 2019-12-23
Bedømmelse 4.33/5 Samlet 6 Bedømmelser
Udvikler https://herohuyongtao.blogspot.com
Betalingsmetode free
Udvidelseswebsted https://gitlab.com/herohuyongtao/force-msyahei-for-chrome
Hjælpeside-URL https://gitlab.com/herohuyongtao/force-msyahei-for-chrome/issues
Understøttede Sprog 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
    }
}