Font Localization for Google Fonts

Forces glyph rendering for a specific language in Google Fonts.

Co to jest Font Localization for Google Fonts?

Font Localization for Google Fonts to rozszerzenie Chrome opracowane przez Hristiyan Dodov, a jego główną funkcją jest „Forces glyph rendering for a specific language in Google Fonts.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Font Localization for Google Fonts

Pobierz pliki rozszerzeń Font Localization for Google Fonts w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Font Localization for Google Fonts Font Localization for Google Fonts
ID eeapanaandeeaigffeogkgcgmpjbmnpf
Oficjalny URL https://chromewebstore.google.com/detail/font-localization-for-goo/eeapanaandeeaigffeogkgcgmpjbmnpf
Opis Forces glyph rendering for a specific language in Google Fonts.
Rozmiar pliku 28.33 KB
Liczba instalacji 119
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2019-07-02
Data Publikacji 2019-07-02
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Hristiyan Dodov
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/OblikStudio/font-localization
Adres URL Strony Pomocy https://github.com/OblikStudio/font-localization/issues
Obsługiwane Języki 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"
    }
}