github-readme-toc

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

Was ist github-readme-toc?

github-readme-toc ist eine Chrome-Erweiterung, die von Ivan Fraixedes entwickelt wurde, und ihr Hauptmerkmal ist "See in the left side the table of content of the readme file in the github project page".

Erweiterungsscreenshots

screenshot

github-readme-toc-Erweiterungs-CRX-Datei herunterladen

Laden Sie github-readme-toc-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name github-readme-toc github-readme-toc
ID lbmealnkdpmndleijdkljlofnmgmpcdf
Offizielle URL https://chromewebstore.google.com/detail/github-readme-toc/lbmealnkdpmndleijdkljlofnmgmpcdf
Beschreibung See in the left side the table of content of the readme file in the github project page
Dateigröße 2.22 MB
Installationsanzahl 171
Aktuelle Version 0.0.5
Letztes Update 2015-09-20
Veröffentlichungsdatum 2015-09-20
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler Ivan Fraixedes
Zahlungsart free
Erweiterungswebsite https://github.com/ifraixedes/browser-extension-github-readme-toc
Hilfeseite URL https://github.com/ifraixedes/browser-extension-github-readme-toc/issues
Unterstützte Sprachen 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"
            ]
        }
    ]
}