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 - это расширение Chrome, разработанное Hristiyan Dodov, и его основная функция - "Forces glyph rendering for a specific language in Google Fonts.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Font Localization for Google Fonts

Скачайте файлы расширений 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
Электронная почта [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"
    }
}