Font Localization for Google Fonts

Forces glyph rendering for a specific language in Google Fonts.

Hvad er Font Localization for Google Fonts?

Font Localization for Google Fonts er en Chrome-udvidelse udviklet af Hristiyan Dodov, og dens hovedfunktion er "Forces glyph rendering for a specific language in Google Fonts.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Font Localization for Google Fonts-udvidelses-CRX-fil

Download Font Localization for Google Fonts-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Font Localization for Google Fonts Font Localization for Google Fonts
ID eeapanaandeeaigffeogkgcgmpjbmnpf
Officiel URL https://chromewebstore.google.com/detail/font-localization-for-goo/eeapanaandeeaigffeogkgcgmpjbmnpf
Beskrivelse Forces glyph rendering for a specific language in Google Fonts.
Filstørrelse 28.33 KB
Antal Installationer 119
Nuværende Version 1.0.2
Senest Opdateret 2019-07-02
Udgivelsesdato 2019-07-02
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Hristiyan Dodov
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/OblikStudio/font-localization
Hjælpeside-URL https://github.com/OblikStudio/font-localization/issues
Understøttede Sprog 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"
    }
}