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是由Evans Owino开发的Chrome扩展程序,该扩展的主要功能是“Highlights all the headings on a page to visually allow the user to see the heading hierarchy.”。

扩展截图

screenshot

下载HTML Heading Highlighter扩展crx文件

下载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"
    }
}