Git First

Takes you to first commit of any GitHub repository

Git First क्या है?

Git First https://kamranahmed.info द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Takes you to first commit of any GitHub repository"।

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

screenshot

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

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

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

                        Git First is a chrome extension that takes you to the initial commit of any repository. It adds a context menu item called "Initial Commit" which is shown whenever you are on a repository page and perform a right click. Clicking this button will take you to the first commit of the current repository.

Currently, it only supports GitHub, however, support for Gitlab and Bitbucket is under way                    

एक्सटेंशन की मूल जानकारी

नाम Git First Git First
ID bkodimdeilmanedhmadkjickmfobpjde
आधिकारिक URL https://chromewebstore.google.com/detail/git-first/bkodimdeilmanedhmadkjickmfobpjde
विवरण Takes you to first commit of any GitHub repository
फ़ाइल का आकार 16.82 KB
स्थापना संख्या 188
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2018-11-02
प्रकाशन तिथि 2018-11-02
रेटिंग 5.00/5 कुल 4 रेटिंग्स
डेवलपर https://kamranahmed.info
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/kamranahmedse/git-first
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Git First",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "Takes you to first commit of any GitHub repository",
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "icons": {
        "16": "\/icons\/icon16.png",
        "48": "\/icons\/icon48.png",
        "128": "\/icons\/icon128.png"
    },
    "browser_action": {
        "default_title": "Git First",
        "default_icon": "\/icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "script.js"
        ]
    }
}