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 là gì?

Force MS Yahei Font Allowing Exceptions là một tiện ích mở rộng Chrome được phát triển bởi https://herohuyongtao.blogspot.com, và tính năng chính của nó là "Use MS Yahei font for all sites with exceptions that can be user-defined.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Force MS Yahei Font Allowing Exceptions

Tải xuống các tệp mở rộng Force MS Yahei Font Allowing Exceptions dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Force MS Yahei Font Allowing Exceptions Force MS Yahei Font Allowing Exceptions
ID dplldmamfgeklcbmjehjajfbafeimjaf
URL Chính Thức https://chromewebstore.google.com/detail/force-ms-yahei-font-allow/dplldmamfgeklcbmjehjajfbafeimjaf
Mô tả Use MS Yahei font for all sites with exceptions that can be user-defined.
Kích Thước Tệp 37.51 KB
Số Lần Cài Đặt 98
Phiên Bản Hiện Tại 7.0.0
Cập Nhật Lần Cuối 2019-12-26
Ngày Phát Hành 2019-12-23
Đánh Giá 4.33/5 Tổng số 6 Đánh Giá
Nhà Phát Triển https://herohuyongtao.blogspot.com
Loại Thanh Toán free
Trang Web Mở Rộng https://gitlab.com/herohuyongtao/force-msyahei-for-chrome
URL Trang Trợ Giúp https://gitlab.com/herohuyongtao/force-msyahei-for-chrome/issues
Ngôn Ngữ Được Hỗ Trợ 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
    }
}