HTML Heading Highlighter

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

Hvad er HTML Heading Highlighter?

HTML Heading Highlighter er en Chrome-udvidelse udviklet af Evans Owino, og dens hovedfunktion er "Highlights all the headings on a page to visually allow the user to see the heading hierarchy.".

Udvidelsesskærmbilleder

screenshot

Download HTML Heading Highlighter-udvidelses-CRX-fil

Download HTML Heading Highlighter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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æggende oplysninger om udvidelsen

Navn HTML Heading Highlighter HTML Heading Highlighter
ID cdfideipbjhenjiijgmifpfgkhoneaic
Officiel URL https://chromewebstore.google.com/detail/html-heading-highlighter/cdfideipbjhenjiijgmifpfgkhoneaic
Beskrivelse Highlights all the headings on a page to visually allow the user to see the heading hierarchy.
Filstørrelse 13.7 KB
Antal Installationer 5,124
Nuværende Version 1.0.1
Senest Opdateret 2018-10-15
Udgivelsesdato 2018-10-15
Bedømmelse 3.40/5 Samlet 5 Bedømmelser
Udvikler Evans Owino
Betalingsmetode free
Udvidelseswebsted https://github.com/eowino/heading-highlighter-chrome-ext
Understøttede Sprog 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"
    }
}