HTML5 Outliner

Generates a navigable page outline with heading and sectioning elements

Qu'est-ce que HTML5 Outliner ?

HTML5 Outliner est une extension Chrome développée par Dominykas Blyžė, et sa fonction principale est "Generates a navigable page outline with heading and sectioning elements".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension HTML5 Outliner

Téléchargez les fichiers d'extension HTML5 Outliner au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom HTML5 Outliner HTML5 Outliner
ID afoibpobokebhgfnknfndkgemglggomo
URL Officiel https://chromewebstore.google.com/detail/html5-outliner/afoibpobokebhgfnknfndkgemglggomo
Description Generates a navigable page outline with heading and sectioning elements
Taille du Fichier 25.58 KB
Nombre d'Installations 100,000
Version Actuelle 0.8.14
Dernière Mise à Jour 2020-06-05
Date de Publication 2020-06-03
Évaluation 4.24/5 Total 259 Évaluations
Développeur Dominykas Blyžė
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/h5o/h5o-chrome
URL de la Page d'Aide https://github.com/h5o/h5o-chrome/issues
Langues Prises en Charge 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\/"
    }
}