github-readme-toc

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

What is github-readme-toc?

github-readme-toc is a Chrome extension developed by Ivan Fraixedes, and its main feature is "See in the left side the table of content of the readme file in the github project page".

Extension Screenshots

screenshot

Download github-readme-toc Extension CRX File

Download github-readme-toc extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name github-readme-toc github-readme-toc
ID lbmealnkdpmndleijdkljlofnmgmpcdf
Official URL https://chromewebstore.google.com/detail/github-readme-toc/lbmealnkdpmndleijdkljlofnmgmpcdf
Description See in the left side the table of content of the readme file in the github project page
File Size 2.22 MB
Installation Count 171
Current Version 0.0.5
Last Updated 2015-09-20
Publish Date 2015-09-20
Rating 3.00/5 Total 2 Ratings
Developer Ivan Fraixedes
Payment Type free
Extension Website https://github.com/ifraixedes/browser-extension-github-readme-toc
Help Page URL https://github.com/ifraixedes/browser-extension-github-readme-toc/issues
Supported Languages 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"
            ]
        }
    ]
}