HTML Heading Highlighter

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

Wat is HTML Heading Highlighter?

HTML Heading Highlighter is een Chrome-extensie ontwikkeld door Evans Owino, en de belangrijkste functie is "Highlights all the headings on a page to visually allow the user to see the heading hierarchy.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie HTML Heading Highlighter

Download HTML Heading Highlighter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam HTML Heading Highlighter HTML Heading Highlighter
ID cdfideipbjhenjiijgmifpfgkhoneaic
Officiële URL https://chromewebstore.google.com/detail/html-heading-highlighter/cdfideipbjhenjiijgmifpfgkhoneaic
Beschrijving Highlights all the headings on a page to visually allow the user to see the heading hierarchy.
Bestandsgrootte 13.7 KB
Aantal Installaties 5,124
Huidige Versie 1.0.1
Laatst Bijgewerkt 2018-10-15
Publicatiedatum 2018-10-15
Beoordeling 3.40/5 Totaal 5 Beoordelingen
Ontwikkelaar Evans Owino
Betalingswijze free
Extensiewebsite https://github.com/eowino/heading-highlighter-chrome-ext
Ondersteunde Talen 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"
    }
}