Force Microsoft Yahei Font

Use WenQuanYi Micro Hei / Microsoft Yahei Chinese Font for all site

Force Microsoft Yahei Font là gì?

Force Microsoft Yahei Font là một tiện ích mở rộng Chrome được phát triển bởi Shellexy, và tính năng chính của nó là "Use WenQuanYi Micro Hei / Microsoft Yahei Chinese Font for all site".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Force Microsoft Yahei Font 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

                        Use WenQuanYi Micro Hei / Microsoft Yahei Chinese Font for all site.

强制让 Chrome 使用微软雅黑/文泉驿微米黑(而不是点阵宋体)显示网页。

安装即用,不像 Stylish 之类全能样式扩展那样需要额外费心设置,
由于是指定 CSS,而非 JavaScript 遍历 DOM 修改样式,所以不占扩展进程,无须等待页面载入并修改重绘,不增加额外开销。

缺点和其他浏览器强制字体一样,webfont 和定义了衬线体的网页可能会失效,不过我已经把选择器改为 :not([class*=icon]) 来避免修改图标字体。

目前的 CSS 样式是:
:not([class*=icon]) {
  font-family: "Droid Sans Fallback", "WenQuanYi Micro Hei", "Microsoft Yahei", "Noto Sans CJK",  "Tahoma", sans-serif, "Simsun" !important; 
}                    

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

Tên Force Microsoft Yahei Font Force Microsoft Yahei Font
ID ojlocjfaheiilmgjdgnoehhdigfedhjl
URL Chính Thức https://chromewebstore.google.com/detail/force-microsoft-yahei-fon/ojlocjfaheiilmgjdgnoehhdigfedhjl
Mô tả Use WenQuanYi Micro Hei / Microsoft Yahei Chinese Font for all site
Kích Thước Tệp 9.09 KB
Số Lần Cài Đặt 5,453
Phiên Bản Hiện Tại 0.2.4
Cập Nhật Lần Cuối 2020-02-18
Ngày Phát Hành 2020-02-18
Đánh Giá 4.52/5 Tổng số 213 Đánh Giá
Nhà Phát Triển Shellexy
Loại Thanh Toán free
Trang Web Mở Rộng https://bitbucket.org/shellexy/chrome-force-microsoft-yahei-font/
URL Trang Trợ Giúp https://bitbucket.org/shellexy/chrome-force-microsoft-yahei-font/issues?status=new&status=open
Ngôn Ngữ Được Hỗ Trợ zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Force Microsoft Yahei Font",
    "description": "Use WenQuanYi Micro Hei \/ Microsoft Yahei Chinese Font for all site",
    "version": "0.2.4",
    "manifest_version": 2,
    "icons": {
        "128": "icon128.png",
        "19": "icon19.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "font.css"
            ]
        }
    ]
}