HTML5 Outliner

Generates a navigable page outline with heading and sectioning elements

¿Qué es HTML5 Outliner?

HTML5 Outliner es una extensión de Chrome desarrollada por Dominykas Blyžė, y su función principal es "Generates a navigable page outline with heading and sectioning elements".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión HTML5 Outliner

Descarga archivos de extensión HTML5 Outliner en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre HTML5 Outliner HTML5 Outliner
ID afoibpobokebhgfnknfndkgemglggomo
URL Oficial https://chromewebstore.google.com/detail/html5-outliner/afoibpobokebhgfnknfndkgemglggomo
Descripción Generates a navigable page outline with heading and sectioning elements
Tamaño del Archivo 25.58 KB
Cantidad de Instalaciones 100,000
Versión Actual 0.8.14
Última Actualización 2020-06-05
Fecha de Publicación 2020-06-03
Calificación 4.24/5 Total de 259 Calificaciones
Desarrollador Dominykas Blyžė
Correo electrónico cws@dominykas.com
Tipo de Pago free
Sitio Web de la Extensión https://github.com/h5o/h5o-chrome
URL de la Página de Ayuda https://github.com/h5o/h5o-chrome/issues
Idiomas Soportados 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": "hello@dominykas.com",
        "url": "http:\/\/www.dominykas.com\/"
    }
}