HTML5 Outliner

Generates a navigable page outline with heading and sectioning elements

Τι είναι το HTML5 Outliner;

Το HTML5 Outliner είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Dominykas Blyžė, και η κύρια λειτουργία του είναι "Generates a navigable page outline with heading and sectioning elements".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης HTML5 Outliner

Λήψη αρχείων επέκτασης HTML5 Outliner σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα HTML5 Outliner HTML5 Outliner
ID afoibpobokebhgfnknfndkgemglggomo
Επίσημο URL https://chromewebstore.google.com/detail/html5-outliner/afoibpobokebhgfnknfndkgemglggomo
Περιγραφή Generates a navigable page outline with heading and sectioning elements
Μέγεθος Αρχείου 25.58 KB
Αριθμός Εγκαταστάσεων 100,000
Τρέχουσα Έκδοση 0.8.14
Τελευταία Ενημέρωση 2020-06-05
Ημερομηνία Δημοσίευσης 2020-06-03
Αξιολόγηση 4.24/5 Συνολικά 259 Αξιολογήσεις
Προγραμματιστής Dominykas Blyžė
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/h5o/h5o-chrome
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/h5o/h5o-chrome/issues
Υποστηριζόμενες Γλώσσες 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\/"
    }
}