github-readme-toc

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

Τι είναι το github-readme-toc;

Το github-readme-toc είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ivan Fraixedes, και η κύρια λειτουργία του είναι "See in the left side the table of content of the readme file in the github project page".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης github-readme-toc

Λήψη αρχείων επέκτασης github-readme-toc σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα github-readme-toc github-readme-toc
ID lbmealnkdpmndleijdkljlofnmgmpcdf
Επίσημο URL https://chromewebstore.google.com/detail/github-readme-toc/lbmealnkdpmndleijdkljlofnmgmpcdf
Περιγραφή See in the left side the table of content of the readme file in the github project page
Μέγεθος Αρχείου 2.22 MB
Αριθμός Εγκαταστάσεων 171
Τρέχουσα Έκδοση 0.0.5
Τελευταία Ενημέρωση 2015-09-20
Ημερομηνία Δημοσίευσης 2015-09-20
Αξιολόγηση 3.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Ivan Fraixedes
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/ifraixedes/browser-extension-github-readme-toc
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/ifraixedes/browser-extension-github-readme-toc/issues
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}