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 Ivan Fraixedes द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "See in the left side the table of content of the readme file in the github project page"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में github-readme-toc एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
            ]
        }
    ]
}