Fontanello

A browser extension that lets you display the basic typographic styles of a text by right-clicking it.

Что такое Fontanello?

Fontanello - это расширение Chrome, разработанное Fred Bergman, и его основная функция - "A browser extension that lets you display the basic typographic styles of a text by right-clicking it.".

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

screenshot
screenshot
screenshot

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

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

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

                        Fontanello makes it super easy to inspect typography on a webpage. It will show you information about typeface, weight, size, color and some other less used CSS-properties. It also show information about contrast for selected text.                    

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

Название Fontanello Fontanello
ID jdlhfjlpaijjhklfadlhbbmpjfddkglc
Официальный URL https://chromewebstore.google.com/detail/fontanello/jdlhfjlpaijjhklfadlhbbmpjfddkglc
Описание A browser extension that lets you display the basic typographic styles of a text by right-clicking it.
Размер файла 8.85 KB
Количество установок 70,000
Текущая Версия 1.2.2
Последнее Обновление 2021-05-02
Дата публикации 2020-02-22
Рейтинг 4.50/5 Всего 38 оценок
Разработчик Fred Bergman
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://fontanello.app/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fontanello",
    "version": "1.2.2",
    "description": "A browser extension that lets you display the basic typographic styles of a text by right-clicking it.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "client.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "minimum_chrome_version": "45",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    }
}