HTML5 Outliner

Generates a navigable page outline with heading and sectioning elements

HTML5 Outliner là gì?

HTML5 Outliner là một tiện ích mở rộng Chrome được phát triển bởi Dominykas Blyžė, và tính năng chính của nó là "Generates a navigable page outline with heading and sectioning elements".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng HTML5 Outliner

Tải xuống các tệp mở rộng HTML5 Outliner dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên HTML5 Outliner HTML5 Outliner
ID afoibpobokebhgfnknfndkgemglggomo
URL Chính Thức https://chromewebstore.google.com/detail/html5-outliner/afoibpobokebhgfnknfndkgemglggomo
Mô tả Generates a navigable page outline with heading and sectioning elements
Kích Thước Tệp 25.58 KB
Số Lần Cài Đặt 100,000
Phiên Bản Hiện Tại 0.8.14
Cập Nhật Lần Cuối 2020-06-05
Ngày Phát Hành 2020-06-03
Đánh Giá 4.24/5 Tổng số 259 Đánh Giá
Nhà Phát Triển Dominykas Blyžė
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/h5o/h5o-chrome
URL Trang Trợ Giúp https://github.com/h5o/h5o-chrome/issues
Ngôn Ngữ Được Hỗ Trợ 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\/"
    }
}