Force MS Yahei Font Allowing Exceptions

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

什么是Force MS Yahei Font Allowing Exceptions?

Force MS Yahei Font Allowing Exceptions是由https://herohuyongtao.blogspot.com开发的Chrome扩展程序,该扩展的主要功能是“Use MS Yahei font for all sites with exceptions that can be user-defined.”。

扩展截图

screenshot
screenshot

下载Force MS Yahei Font Allowing Exceptions扩展crx文件

下载Force MS Yahei Font Allowing Exceptions扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Force MS Yahei Font Allowing Exceptions Force MS Yahei Font Allowing Exceptions
ID dplldmamfgeklcbmjehjajfbafeimjaf
官方URL https://chromewebstore.google.com/detail/force-ms-yahei-font-allow/dplldmamfgeklcbmjehjajfbafeimjaf
简介 Use MS Yahei font for all sites with exceptions that can be user-defined.
文件大小 37.51 KB
安装次数 98
当前版本 7.0.0
更新时间 2019-12-26
上架时间 2019-12-23
评分 4.33/5 共6次评分
开发者 https://herohuyongtao.blogspot.com
付费类型 free
扩展官网 https://gitlab.com/herohuyongtao/force-msyahei-for-chrome
帮助页面URL https://gitlab.com/herohuyongtao/force-msyahei-for-chrome/issues
支持的语言 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
    }
}