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žė
电子邮箱 [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\/"
    }
}