Fontify

This extension allows the user to change the font on the whole page.

Что такое Fontify?

Fontify - это расширение Chrome, разработанное MarcCsharp, и его основная функция - "This extension allows the user to change the font on the whole page.".

Скачать файл CRX расширения Fontify

Скачайте файлы расширений Fontify в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This simple extension uses the google fonts API to give the user the ability to change the font on a page to which-ever they wish.

Simply click the extension and select your font from the drop down and see it applied to the page.                    

Основная информация о расширении

Название Fontify Fontify
ID npmbploomnpbcejbghaflhmdcnjkembd
Официальный URL https://chromewebstore.google.com/detail/fontify/npmbploomnpbcejbghaflhmdcnjkembd
Описание This extension allows the user to change the font on the whole page.
Размер файла 5.6 KB
Количество установок 428
Текущая Версия 0.0.1
Последнее Обновление 2018-01-24
Дата публикации 2018-01-24
Рейтинг 5.00/5 Всего 3 оценок
Разработчик MarcCsharp
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fontify",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "This extension allows the user to change the font on the whole page.",
    "background": {
        "scripts": [
            "injectFont.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Click to change font"
    },
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "activeTab"
    ]
}