HTML5 Outliner

Generates a navigable page outline with heading and sectioning elements

Vad är HTML5 Outliner?

HTML5 Outliner är en Chrome-tillägg utvecklad av Dominykas Blyžė, och dess huvudfunktion är "Generates a navigable page outline with heading and sectioning elements".

Tilläggsskärmbilder

screenshot

Ladda ner HTML5 Outliner-förlängningens CRX-fil

Ladda ner HTML5 Outliner-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn HTML5 Outliner HTML5 Outliner
ID afoibpobokebhgfnknfndkgemglggomo
Officiell webbadress https://chromewebstore.google.com/detail/html5-outliner/afoibpobokebhgfnknfndkgemglggomo
Beskrivning Generates a navigable page outline with heading and sectioning elements
Filstorlek 25.58 KB
Antal Installationer 100,000
Aktuell Version 0.8.14
Senast Uppdaterad 2020-06-05
Publiceringsdatum 2020-06-03
Betyg 4.24/5 Totalt 259 Betyg
Utvecklare Dominykas Blyžė
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/h5o/h5o-chrome
Hjälpsida URL https://github.com/h5o/h5o-chrome/issues
Stödda Språk 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\/"
    }
}