HTML5 Outliner

Generates a navigable page outline with heading and sectioning elements

什麼是HTML5 Outliner?

HTML5 Outliner是由Dominykas Blyžė開發的Chrome擴展程式,該擴展的主要功能是“Generates a navigable page outline with heading and sectioning elements”。

擴展截圖

screenshot

下載HTML5 Outliner擴展crx文件

下載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
官方網址 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\/"
    }
}