HTML Outline

Tool to display an HTML Outline

Wat is HTML Outline?

HTML Outline is een Chrome-extensie ontwikkeld door https://www.rectus.co.jp, en de belangrijkste functie is "Tool to display an HTML Outline".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie HTML Outline

Download HTML Outline-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

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

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

Basisinformatie over de Extensie

Naam HTML Outline HTML Outline
ID bbdofojliblplnpnjjckgbbobblppipj
Officiële URL https://chromewebstore.google.com/detail/html-outline/bbdofojliblplnpnjjckgbbobblppipj
Beschrijving Tool to display an HTML Outline
Bestandsgrootte 231 KB
Aantal Installaties 247
Huidige Versie 1.0.2
Laatst Bijgewerkt 2022-11-28
Publicatiedatum 2022-01-06
Ontwikkelaar https://www.rectus.co.jp
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.rectus.co.jp/tool/htmloutline.html
Help Pagina-URL https://www.rectus.co.jp/tool/htmloutline.html
URL van de Privacybeleid Pagina https://www.rectus.co.jp/company/privacy.html
Ondersteunde Talen 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"
            ]
        }
    ]
}