github-readme-toc

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

Co je github-readme-toc?

github-readme-toc je rozšíření Chrome vyvinuté Ivan Fraixedes, a jeho hlavní funkcí je „See in the left side the table of content of the readme file in the github project page“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření github-readme-toc

Stáhněte si soubory rozšíření github-readme-toc ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název github-readme-toc github-readme-toc
ID lbmealnkdpmndleijdkljlofnmgmpcdf
Oficiální URL https://chromewebstore.google.com/detail/github-readme-toc/lbmealnkdpmndleijdkljlofnmgmpcdf
Popis See in the left side the table of content of the readme file in the github project page
Velikost souboru 2.22 MB
Počet instalací 171
Aktuální Verze 0.0.5
Poslední Aktualizace 2015-09-20
Datum Vydání 2015-09-20
Hodnocení 3.00/5 Celkem 2 Hodnocení
Vývojář Ivan Fraixedes
Typ Platby free
Webové stránky Rozšíření https://github.com/ifraixedes/browser-extension-github-readme-toc
URL Stránky Nápovědy https://github.com/ifraixedes/browser-extension-github-readme-toc/issues
Podporované Jazyky 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"
            ]
        }
    ]
}