Font changer

This extension allows you to change the font and his size on site pages (where this is possible).

Что такое Font changer?

Font changer - это расширение Chrome, разработанное http://namata.ru, и его основная функция - "This extension allows you to change the font and his size on site pages (where this is possible).".

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

screenshot

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

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

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

                        This extension allows you to change the font and his size on site pages (where this is possible). Just click on extension icon, write your font and his size and press "Set". After that this font will use on each site page (where this is possible).                    

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

Название Font changer Font changer
ID gekcpnidalfkkpohbhmpiolpeibmmahm
Официальный URL https://chrome.google.com/webstore/detail/font-changer/gekcpnidalfkkpohbhmpiolpeibmmahm
Описание This extension allows you to change the font and his size on site pages (where this is possible).
Размер файла 251 KB
Количество установок 184
Текущая Версия 1.1
Последнее Обновление 2020-11-07
Дата публикации 2020-11-07
Рейтинг 3.00/5 Всего 1 оценок
Разработчик http://namata.ru
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://en.namata.ru/extensions/fontchanger/
URL страницы помощи https://en.namata.ru/support/thanksforinstall/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Font changer",
    "description": "This extension allows you to change the font and his size on site pages (where this is possible).",
    "version": "1.1",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab"
    ]
}