Font Localization for Google Fonts

Forces glyph rendering for a specific language in Google Fonts.

什麼是Font Localization for Google Fonts?

Font Localization for Google Fonts是由Hristiyan Dodov開發的Chrome擴展程式,該擴展的主要功能是“Forces glyph rendering for a specific language in Google Fonts.”。

擴展截圖

screenshot
screenshot

下載Font Localization for Google Fonts擴展crx文件

下載Font Localization for Google Fonts擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Font Localization for Google Fonts Font Localization for Google Fonts
ID eeapanaandeeaigffeogkgcgmpjbmnpf
官方網址 https://chromewebstore.google.com/detail/font-localization-for-goo/eeapanaandeeaigffeogkgcgmpjbmnpf
簡介 Forces glyph rendering for a specific language in Google Fonts.
檔案大小 28.33 KB
安裝次數 119
目前版本 1.0.2
更新時間 2019-07-02
上架時間 2019-07-02
評分 5.00/5 共 1 次評分
開發者 Hristiyan Dodov
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/OblikStudio/font-localization
說明頁面URL https://github.com/OblikStudio/font-localization/issues
支援的語言 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"
    }
}