github-readme-toc

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

Cos'è github-readme-toc?

github-readme-toc è un'estensione di Chrome sviluppata da Ivan Fraixedes, e la sua funzione principale è "See in the left side the table of content of the readme file in the github project page".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione github-readme-toc

Scarica i file di estensione github-readme-toc in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome github-readme-toc github-readme-toc
ID lbmealnkdpmndleijdkljlofnmgmpcdf
URL Ufficiale https://chromewebstore.google.com/detail/github-readme-toc/lbmealnkdpmndleijdkljlofnmgmpcdf
Descrizione See in the left side the table of content of the readme file in the github project page
Dimensione del File 2.22 MB
Conteggio Installazioni 171
Versione Corrente 0.0.5
Ultimo Aggiornamento 2015-09-20
Data di Pubblicazione 2015-09-20
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore Ivan Fraixedes
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/ifraixedes/browser-extension-github-readme-toc
URL della Pagina di Aiuto https://github.com/ifraixedes/browser-extension-github-readme-toc/issues
Lingue Supportate 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"
            ]
        }
    ]
}