HTML5 Outliner

Generates a navigable page outline with heading and sectioning elements

Cos'è HTML5 Outliner?

HTML5 Outliner è un'estensione di Chrome sviluppata da Dominykas Blyžė, e la sua funzione principale è "Generates a navigable page outline with heading and sectioning elements".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione HTML5 Outliner

Scarica i file di estensione HTML5 Outliner in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome HTML5 Outliner HTML5 Outliner
ID afoibpobokebhgfnknfndkgemglggomo
URL Ufficiale https://chromewebstore.google.com/detail/html5-outliner/afoibpobokebhgfnknfndkgemglggomo
Descrizione Generates a navigable page outline with heading and sectioning elements
Dimensione del File 25.58 KB
Conteggio Installazioni 100,000
Versione Corrente 0.8.14
Ultimo Aggiornamento 2020-06-05
Data di Pubblicazione 2020-06-03
Valutazione 4.24/5 Totale 259 Valutazioni
Sviluppatore Dominykas Blyžė
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/h5o/h5o-chrome
URL della Pagina di Aiuto https://github.com/h5o/h5o-chrome/issues
Lingue Supportate 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\/"
    }
}