HTML5 Outliner

Generates a navigable page outline with heading and sectioning elements

O que é HTML5 Outliner?

HTML5 Outliner é uma extensão do Chrome desenvolvida por Dominykas Blyžė, e sua principal característica é "Generates a navigable page outline with heading and sectioning elements".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão HTML5 Outliner

Baixe arquivos de extensão HTML5 Outliner no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome HTML5 Outliner HTML5 Outliner
ID afoibpobokebhgfnknfndkgemglggomo
URL Oficial https://chromewebstore.google.com/detail/html5-outliner/afoibpobokebhgfnknfndkgemglggomo
Descrição Generates a navigable page outline with heading and sectioning elements
Tamanho do Arquivo 25.58 KB
Contagem de Instalações 100,000
Versão Atual 0.8.14
Última Atualização 2020-06-05
Data de Publicação 2020-06-03
Classificação 4.24/5 Total de 259 Avaliações
Desenvolvedor Dominykas Blyžė
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/h5o/h5o-chrome
URL da Página de Ajuda https://github.com/h5o/h5o-chrome/issues
Idiomas Suportados 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\/"
    }
}