HTML5 Outliner

Generates a navigable page outline with heading and sectioning elements

Apa itu HTML5 Outliner?

HTML5 Outliner adalah ekstensi Chrome yang dikembangkan oleh Dominykas Blyžė, dan fitur utamanya adalah "Generates a navigable page outline with heading and sectioning elements".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi HTML5 Outliner

Unduh file ekstensi HTML5 Outliner dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama HTML5 Outliner HTML5 Outliner
ID afoibpobokebhgfnknfndkgemglggomo
URL Resmi https://chromewebstore.google.com/detail/html5-outliner/afoibpobokebhgfnknfndkgemglggomo
Deskripsi Generates a navigable page outline with heading and sectioning elements
Ukuran File 25.58 KB
Jumlah Instalasi 100,000
Versi Saat Ini 0.8.14
Terakhir Diperbarui 2020-06-05
Tanggal Publikasi 2020-06-03
Penilaian 4.24/5 Total 259 Penilaian
Pengembang Dominykas Blyžė
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/h5o/h5o-chrome
URL Halaman Bantuan https://github.com/h5o/h5o-chrome/issues
Bahasa yang Didukung 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\/"
    }
}