github-readme-toc

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

Qu'est-ce que github-readme-toc ?

github-readme-toc est une extension Chrome développée par Ivan Fraixedes, et sa fonction principale est "See in the left side the table of content of the readme file in the github project page".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension github-readme-toc

Téléchargez les fichiers d'extension github-readme-toc au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom github-readme-toc github-readme-toc
ID lbmealnkdpmndleijdkljlofnmgmpcdf
URL Officiel 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
Taille du Fichier 2.22 MB
Nombre d'Installations 171
Version Actuelle 0.0.5
Dernière Mise à Jour 2015-09-20
Date de Publication 2015-09-20
Évaluation 3.00/5 Total 2 Évaluations
Développeur Ivan Fraixedes
Type de Paiement free
Site Web de l'Extension https://github.com/ifraixedes/browser-extension-github-readme-toc
URL de la Page d'Aide https://github.com/ifraixedes/browser-extension-github-readme-toc/issues
Langues Prises en Charge 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"
            ]
        }
    ]
}