github-readme-toc

See in the left side the table of content of the readme file in the github project page

github-readme-toc là gì?

github-readme-toc là một tiện ích mở rộng Chrome được phát triển bởi Ivan Fraixedes, và tính năng chính của nó là "See in the left side the table of content of the readme file in the github project page".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng github-readme-toc

Tải xuống các tệp mở rộng github-readme-toc 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

                        This extension shows a table of content generated from the README file of any GitGuh project’s root page.

It is very handy to jump through the sections without scrolling manually up and down or use the browser search action at the same time that you have to remember how it is called.

It is open source released under MIT and Creative Common, check link to GitHub project

Change log: https://github.com/ifraixedes/browser-extension-github-readme-toc/blob/master/CHANGELOG.md                    

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

Tên github-readme-toc github-readme-toc
ID lbmealnkdpmndleijdkljlofnmgmpcdf
URL Chính Thức https://chromewebstore.google.com/detail/github-readme-toc/lbmealnkdpmndleijdkljlofnmgmpcdf
Mô tả See in the left side the table of content of the readme file in the github project page
Kích Thước Tệp 2.22 MB
Số Lần Cài Đặt 171
Phiên Bản Hiện Tại 0.0.5
Cập Nhật Lần Cuối 2015-09-20
Ngày Phát Hành 2015-09-20
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Ivan Fraixedes
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ifraixedes/browser-extension-github-readme-toc
URL Trang Trợ Giúp https://github.com/ifraixedes/browser-extension-github-readme-toc/issues
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "github-readme-toc",
    "version": "0.0.5",
    "author": "Ivan Fraixedes  (http:\/\/ivan.fraixed.es)",
    "description": "See in the left side the table of content of the readme file in the github project page",
    "icons": {
        "16": "img\/git-readme-toc-16.png",
        "48": "img\/git-readme-toc-48.png",
        "128": "img\/git-readme-toc-128.png"
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*"
            ],
            "exclude_globs": [
                "https:\/\/github.com\/*\/*\/*"
            ],
            "js": [
                "scripts\/toc-widget.js"
            ],
            "css": [
                "css\/toc-widget.css"
            ]
        }
    ]
}