Font Localization for Google Fonts

Forces glyph rendering for a specific language in Google Fonts.

Font Localization for Google Fonts là gì?

Font Localization for Google Fonts là một tiện ích mở rộng Chrome được phát triển bởi Hristiyan Dodov, và tính năng chính của nó là "Forces glyph rendering for a specific language in Google Fonts.".

Ả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 Font Localization for Google Fonts

Tải xuống các tệp mở rộng Font Localization for Google Fonts 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

                        Open Google Fonts, click the extension icon, and select a language. Then, fonts shown will be forced to render glyphs specific to the chosen language, if they have such.

Note that some fonts may not have localized glyphs. In that case, they will render the default glyphs for that script.                    

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

Tên Font Localization for Google Fonts Font Localization for Google Fonts
ID eeapanaandeeaigffeogkgcgmpjbmnpf
URL Chính Thức https://chromewebstore.google.com/detail/font-localization-for-goo/eeapanaandeeaigffeogkgcgmpjbmnpf
Mô tả Forces glyph rendering for a specific language in Google Fonts.
Kích Thước Tệp 28.33 KB
Số Lần Cài Đặt 119
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2019-07-02
Ngày Phát Hành 2019-07-02
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Hristiyan Dodov
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/OblikStudio/font-localization
URL Trang Trợ Giúp https://github.com/OblikStudio/font-localization/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.0.2",
    "name": "Font Localization for Google Fonts",
    "description": "Forces glyph rendering for a specific language in Google Fonts.",
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/fonts.google.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    }
}