HTML Outline

Tool to display an HTML Outline

Hvad er HTML Outline?

HTML Outline er en Chrome-udvidelse udviklet af https://www.rectus.co.jp, og dens hovedfunktion er "Tool to display an HTML Outline".

Udvidelsesskærmbilleder

screenshot

Download HTML Outline-udvidelses-CRX-fil

Download HTML Outline-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

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

Grundlæggende oplysninger om udvidelsen

Navn HTML Outline HTML Outline
ID bbdofojliblplnpnjjckgbbobblppipj
Officiel URL https://chromewebstore.google.com/detail/html-outline/bbdofojliblplnpnjjckgbbobblppipj
Beskrivelse Tool to display an HTML Outline
Filstørrelse 231 KB
Antal Installationer 247
Nuværende Version 1.0.2
Senest Opdateret 2022-11-28
Udgivelsesdato 2022-01-06
Udvikler https://www.rectus.co.jp
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://www.rectus.co.jp/tool/htmloutline.html
Hjælpeside-URL https://www.rectus.co.jp/tool/htmloutline.html
URL til Fortrolighedspolitik Side https://www.rectus.co.jp/company/privacy.html
Understøttede Sprog 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"
            ]
        }
    ]
}