Git First

Takes you to first commit of any GitHub repository

Τι είναι το Git First;

Το Git First είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://kamranahmed.info, και η κύρια λειτουργία του είναι "Takes you to first commit of any GitHub repository".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Git First

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

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

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