Table-of-contents-crx

Creates an expandable Table-of-Contents on ANY web-page with headings

Table-of-contents-crx là gì?

Table-of-contents-crx là một tiện ích mở rộng Chrome được phát triển bởi https://synagonism.net, và tính năng chính của nó là "Creates an expandable Table-of-Contents on ANY web-page with headings".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Table-of-contents-crx

Tải xuống các tệp mở rộng Table-of-contents-crx 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

                        == Starting ==
The extension's icon toggles the Table-of-Contents (ToC) of the current tab.

== Attributes ==
1) Makes much more easier the READING of ANY web-page with many headings like scientific-papers, law, spec, help, etc files, because creates their outline.
2) The Table-of-Contents is an EXPANDABLE-tree which helps navigating it.
3) TWO-WAY communication between ToC and webpage. By hovering a piece of text on the page, highlights in the toc-tree its position (with some exceptions!!!) and expands only its parent-nodes. Thus, we have the BIG-PICTURE of what we are reading.
4) You can change the WIDTH of ToC or webpage.

== Code ==
* Licence: GPL, MIT.
* Source-code: TableOfContents--git-repository @ GitHub
  (http://github.com/nikkas/TableOfContents)
* WEB-PAGE of source-code|extension:
  (http://synagonism.net/program/table-of-contents/)

== Evolution ==
* My html5.id.toc.preview format (http://synagonism.net/hitp/) creates a ToC on ANY browser.
* In 2010, I published my JAVA open-source HtmlMgr program  (http://htmlmgr.sourceforge.net/) where I propose, for the first time, how we can create webpages that anyone can refer to any part of them and we can read easily.

== Acknowledgement ==
Many thanks to those I have studied their codes:
1) HTML5 Outliner by Dominykas Blyžė. I used his implementation of html5-outline-algorithm.
2) http://www.dhtmlgoodies.com/  for the expandable-tree code.
3) EasyReader extension of Anton Johansson
4) Chrome Outliner by genki.gthp.net.
5) jQery-Splitter, Dave Methvin, http://methvin.com/splitter/                    

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

Tên Table-of-contents-crx Table-of-contents-crx
ID eeknhipceeelbgdbcmchicoaoalfdnhi
URL Chính Thức https://chromewebstore.google.com/detail/table-of-contents-crx/eeknhipceeelbgdbcmchicoaoalfdnhi
Mô tả Creates an expandable Table-of-Contents on ANY web-page with headings
Kích Thước Tệp 94.75 KB
Số Lần Cài Đặt 2,222
Phiên Bản Hiện Tại 2014.1.10.16
Cập Nhật Lần Cuối 2014-01-10
Ngày Phát Hành 2014-01-10
Đánh Giá 4.20/5 Tổng số 20 Đánh Giá
Nhà Phát Triển https://synagonism.net
Loại Thanh Toán free
Trang Web Mở Rộng http://synagonism.net/program/table-of-contents/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Table-of-contents-crx",
    "version": "2014.1.10.16",
    "description": "Creates an expandable Table-of-Contents on ANY web-page with headings",
    "short_name": "crxToc",
    "icons": {
        "16": "toc-img-16.png",
        "48": "toc-img-48.png",
        "128": "toc-img-128.png"
    },
    "browser_action": {
        "default_icon": "toc-img-16.png",
        "default_name": "Table-of-contents-crx"
    },
    "content_scripts": [
        {
            "css": [
                "toc.css"
            ],
            "js": [
                "jquery-2.0.3.min.js",
                "toc.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "toc-event-page.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "jquery-2.0.3.min.map"
    ]
}