HTML Heading Highlighter

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

Co to jest HTML Heading Highlighter?

HTML Heading Highlighter to rozszerzenie Chrome opracowane przez Evans Owino, a jego główną funkcją jest „Highlights all the headings on a page to visually allow the user to see the heading hierarchy.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia HTML Heading Highlighter

Pobierz pliki rozszerzeń HTML Heading Highlighter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa HTML Heading Highlighter HTML Heading Highlighter
ID cdfideipbjhenjiijgmifpfgkhoneaic
Oficjalny URL https://chromewebstore.google.com/detail/html-heading-highlighter/cdfideipbjhenjiijgmifpfgkhoneaic
Opis Highlights all the headings on a page to visually allow the user to see the heading hierarchy.
Rozmiar pliku 13.7 KB
Liczba instalacji 5,124
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2018-10-15
Data Publikacji 2018-10-15
Ocena 3.40/5 Łącznie 5 Oceny
Deweloper Evans Owino
Typ Płatności free
Strona Rozszerzenia https://github.com/eowino/heading-highlighter-chrome-ext
Obsługiwane Języki 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"
    }
}