HTML Heading Highlighter

Highlights all the headings on a page to visually allow the user to see the heading hierarchy.

Что такое HTML Heading Highlighter?

HTML Heading Highlighter - это расширение Chrome, разработанное Evans Owino, и его основная функция - "Highlights all the headings on a page to visually allow the user to see the heading hierarchy.".

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

screenshot

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

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

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

                        A chrome extension that highlights all the headings (h1-h6) on the page. I made this to extension to help me quickly get a rough idea of the heading structure when carrying out accessibility audits. Each heading is given an outline with a specific colour. A key is also appended to the body which illustrates the mapping of colour to heading.                    

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

Название HTML Heading Highlighter HTML Heading Highlighter
ID cdfideipbjhenjiijgmifpfgkhoneaic
Официальный URL https://chromewebstore.google.com/detail/html-heading-highlighter/cdfideipbjhenjiijgmifpfgkhoneaic
Описание Highlights all the headings on a page to visually allow the user to see the heading hierarchy.
Размер файла 13.7 KB
Количество установок 5,124
Текущая Версия 1.0.1
Последнее Обновление 2018-10-15
Дата публикации 2018-10-15
Рейтинг 3.40/5 Всего 5 оценок
Разработчик Evans Owino
Тип оплаты free
Официальный сайт расширения https://github.com/eowino/heading-highlighter-chrome-ext
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HTML Heading Highlighter",
    "short_name": "Highlight Headings",
    "version": "1.0.1",
    "description": "Highlights all the headings on a page to visually allow the user to see the heading hierarchy.",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/images\/hh_16.png",
            "32": "assets\/images\/hh_32.png",
            "48": "assets\/images\/hh_48.png",
            "128": "assets\/images\/hh_128.png"
        }
    },
    "icons": {
        "16": "assets\/images\/hh_16.png",
        "32": "assets\/images\/hh_32.png",
        "48": "assets\/images\/hh_48.png",
        "128": "assets\/images\/hh_128.png"
    }
}