HTML Heading Highlighter

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

Vad är HTML Heading Highlighter?

HTML Heading Highlighter är en Chrome-tillägg utvecklad av Evans Owino, och dess huvudfunktion är "Highlights all the headings on a page to visually allow the user to see the heading hierarchy.".

Tilläggsskärmbilder

screenshot

Ladda ner HTML Heading Highlighter-förlängningens CRX-fil

Ladda ner HTML Heading Highlighter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn HTML Heading Highlighter HTML Heading Highlighter
ID cdfideipbjhenjiijgmifpfgkhoneaic
Officiell webbadress https://chromewebstore.google.com/detail/html-heading-highlighter/cdfideipbjhenjiijgmifpfgkhoneaic
Beskrivning Highlights all the headings on a page to visually allow the user to see the heading hierarchy.
Filstorlek 13.7 KB
Antal Installationer 5,124
Aktuell Version 1.0.1
Senast Uppdaterad 2018-10-15
Publiceringsdatum 2018-10-15
Betyg 3.40/5 Totalt 5 Betyg
Utvecklare Evans Owino
Betalningssätt free
Tilläggswebbplats https://github.com/eowino/heading-highlighter-chrome-ext
Stödda Språk 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"
    }
}