Font Localization for Google Fonts

Forces glyph rendering for a specific language in Google Fonts.

What is Font Localization for Google Fonts?

Font Localization for Google Fonts is a Chrome extension developed by Hristiyan Dodov, and its main feature is "Forces glyph rendering for a specific language in Google Fonts.".

Extension Screenshots

screenshot
screenshot

Download Font Localization for Google Fonts Extension CRX File

Download Font Localization for Google Fonts extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Font Localization for Google Fonts Font Localization for Google Fonts
ID eeapanaandeeaigffeogkgcgmpjbmnpf
Official URL https://chromewebstore.google.com/detail/font-localization-for-goo/eeapanaandeeaigffeogkgcgmpjbmnpf
Description Forces glyph rendering for a specific language in Google Fonts.
File Size 28.33 KB
Installation Count 119
Current Version 1.0.2
Last Updated 2019-07-02
Publish Date 2019-07-02
Rating 5.00/5 Total 1 Ratings
Developer Hristiyan Dodov
Email [email protected]
Payment Type free
Extension Website https://github.com/OblikStudio/font-localization
Help Page URL https://github.com/OblikStudio/font-localization/issues
Supported Languages 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"
    }
}