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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/"
    }
}