HTML5 Outliner

Generates a navigable page outline with heading and sectioning elements

Wat is HTML5 Outliner?

HTML5 Outliner is een Chrome-extensie ontwikkeld door Dominykas Blyžė, en de belangrijkste functie is "Generates a navigable page outline with heading and sectioning elements".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie HTML5 Outliner

Download HTML5 Outliner-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

                        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                    

Basisinformatie over de Extensie

Naam HTML5 Outliner HTML5 Outliner
ID afoibpobokebhgfnknfndkgemglggomo
Officiële URL https://chromewebstore.google.com/detail/html5-outliner/afoibpobokebhgfnknfndkgemglggomo
Beschrijving Generates a navigable page outline with heading and sectioning elements
Bestandsgrootte 25.58 KB
Aantal Installaties 100,000
Huidige Versie 0.8.14
Laatst Bijgewerkt 2020-06-05
Publicatiedatum 2020-06-03
Beoordeling 4.24/5 Totaal 259 Beoordelingen
Ontwikkelaar Dominykas Blyžė
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/h5o/h5o-chrome
Help Pagina-URL https://github.com/h5o/h5o-chrome/issues
Ondersteunde Talen 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\/"
    }
}