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
公式URL 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
Eメール [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"
    }
}