github-readme-toc

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

Wat is github-readme-toc?

github-readme-toc is een Chrome-extensie ontwikkeld door Ivan Fraixedes, en de belangrijkste functie is "See in the left side the table of content of the readme file in the github project page".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie github-readme-toc

Download github-readme-toc-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam github-readme-toc github-readme-toc
ID lbmealnkdpmndleijdkljlofnmgmpcdf
Officiële URL https://chromewebstore.google.com/detail/github-readme-toc/lbmealnkdpmndleijdkljlofnmgmpcdf
Beschrijving See in the left side the table of content of the readme file in the github project page
Bestandsgrootte 2.22 MB
Aantal Installaties 171
Huidige Versie 0.0.5
Laatst Bijgewerkt 2015-09-20
Publicatiedatum 2015-09-20
Beoordeling 3.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Ivan Fraixedes
Betalingswijze free
Extensiewebsite https://github.com/ifraixedes/browser-extension-github-readme-toc
Help Pagina-URL https://github.com/ifraixedes/browser-extension-github-readme-toc/issues
Ondersteunde Talen 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"
            ]
        }
    ]
}