HTML Outline

Tool to display an HTML Outline

What is HTML Outline?

HTML Outline is a Chrome extension developed by https://www.rectus.co.jp, and its main feature is "Tool to display an HTML Outline".

Extension Screenshots

screenshot

Download HTML Outline Extension CRX File

Download HTML Outline extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        HTMLページでのアウトラインが簡単に分かるツールです。

見出しと判別されたタグの種類やセクショニング要素を使っている場合はその種類が分かります。
見出しタグに画像だけが存在する場合は alt 属性を表示します。                    

Extension Basic Information

Name HTML Outline HTML Outline
ID bbdofojliblplnpnjjckgbbobblppipj
Official URL https://chromewebstore.google.com/detail/html-outline/bbdofojliblplnpnjjckgbbobblppipj
Description Tool to display an HTML Outline
File Size 231 KB
Installation Count 247
Current Version 1.0.2
Last Updated 2022-11-28
Publish Date 2022-01-06
Developer https://www.rectus.co.jp
Email [email protected]
Payment Type free
Extension Website https://www.rectus.co.jp/tool/htmloutline.html
Help Page URL https://www.rectus.co.jp/tool/htmloutline.html
Privacy Policy Page URL https://www.rectus.co.jp/company/privacy.html
Supported Languages en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_ext_name__",
    "short_name": "__MSG_ext_shortname__",
    "version": "1.0.2",
    "description": "__MSG_ext_description__",
    "default_locale": "ja",
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "__MSG_ext_name__",
        "default_icon": {
            "19": "icons\/icon-19.png"
        }
    },
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "all_frames": true,
            "js": [
                "contentscript.js"
            ]
        }
    ]
}