Font Changer

Find elements on the page and change their font with just few clicks.

Что такое Font Changer?

Font Changer - это расширение Chrome, разработанное Rafał Florczak, и его основная функция - "Find elements on the page and change their font with just few clicks.".

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

screenshot

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

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

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

                        You can use this extension to make the desired parts of the website look more readable by changing their fonts.                    

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

Название Font Changer Font Changer
ID jokhgliahkldheenecgebcldmdcccocp
Официальный URL https://chromewebstore.google.com/detail/font-changer/jokhgliahkldheenecgebcldmdcccocp
Описание Find elements on the page and change their font with just few clicks.
Размер файла 182 KB
Количество установок 357
Текущая Версия 0.3.3
Последнее Обновление 2022-04-13
Дата публикации 2019-03-21
Рейтинг 1.00/5 Всего 2 оценок
Разработчик Rafał Florczak
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/florczakraf/font-changer
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Font Changer",
    "version": "0.3.3",
    "description": "Find elements on the page and change their font with just few clicks.",
    "icons": {
        "64": "font-changer\/icons\/64.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "font-changer\/content-script\/font-changer.js"
            ],
            "css": [
                "font-changer\/content-script\/font-changer.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "font-changer\/icons\/64.png",
        "default_title": "Font Changer"
    },
    "background": {
        "scripts": [
            "font-changer\/background\/background.js"
        ]
    },
    "permissions": [
        "activeTab"
    ]
}