github-readme-toc

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

什么是github-readme-toc?

github-readme-toc是由Ivan Fraixedes开发的Chrome扩展程序,该扩展的主要功能是“See in the left side the table of content of the readme file in the github project page”。

扩展截图

screenshot

下载github-readme-toc扩展crx文件

下载github-readme-toc扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 github-readme-toc github-readme-toc
ID lbmealnkdpmndleijdkljlofnmgmpcdf
官方URL https://chromewebstore.google.com/detail/github-readme-toc/lbmealnkdpmndleijdkljlofnmgmpcdf
简介 See in the left side the table of content of the readme file in the github project page
文件大小 2.22 MB
安装次数 171
当前版本 0.0.5
更新时间 2015-09-20
上架时间 2015-09-20
评分 3.00/5 共2次评分
开发者 Ivan Fraixedes
付费类型 free
扩展官网 https://github.com/ifraixedes/browser-extension-github-readme-toc
帮助页面URL https://github.com/ifraixedes/browser-extension-github-readme-toc/issues
支持的语言 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"
            ]
        }
    ]
}