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
公式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žė
Eメール [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\/"
    }
}