HTML5 Outliner

Generates a navigable page outline with heading and sectioning elements

Was ist HTML5 Outliner?

HTML5 Outliner ist eine Chrome-Erweiterung, die von Dominykas Blyžė entwickelt wurde, und ihr Hauptmerkmal ist "Generates a navigable page outline with heading and sectioning elements".

Erweiterungsscreenshots

screenshot

HTML5 Outliner-Erweiterungs-CRX-Datei herunterladen

Laden Sie HTML5 Outliner-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension is using the HTML5 outline algorithm to create a table of contents. 
Should also work well with HTML4 (and older?) pages, that have structured headings.
The table of contents is clickable and tries to highlight the heading/section in question after the jump.

The extension should prove useful to people who find themselves often using online HTML5 outliners.

Comments, bug reports and suggestions much appreciated!

Extension source code: https://github.com/h5o/h5o-chrome
Outliner source code: https://github.com/h5o/h5o-js                    

Grundlegende Informationen zur Erweiterung

Name HTML5 Outliner HTML5 Outliner
ID afoibpobokebhgfnknfndkgemglggomo
Offizielle URL https://chromewebstore.google.com/detail/html5-outliner/afoibpobokebhgfnknfndkgemglggomo
Beschreibung Generates a navigable page outline with heading and sectioning elements
Dateigröße 25.58 KB
Installationsanzahl 100,000
Aktuelle Version 0.8.14
Letztes Update 2020-06-05
Veröffentlichungsdatum 2020-06-03
Bewertung 4.24/5 Insgesamt 259 Bewertungen
Entwickler Dominykas Blyžė
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/h5o/h5o-chrome
Hilfeseite URL https://github.com/h5o/h5o-chrome/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HTML5 Outliner",
    "short_name": "h5o",
    "manifest_version": 2,
    "description": "Generates a navigable page outline with heading and sectioning elements",
    "icons": {
        "48": "img\/48.png",
        "128": "img\/128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "outliner.min.js",
                "createOutline.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "img\/16.png",
        "default_title": "Outline",
        "default_popup": "popup.html"
    },
    "version": "0.8.14",
    "author": {
        "name": "Dominykas Bly\u017e\u0117",
        "email": "[email protected]",
        "url": "http:\/\/www.dominykas.com\/"
    }
}