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