Git First

Takes you to first commit of any GitHub repository

Cos'è Git First?

Git First è un'estensione di Chrome sviluppata da https://kamranahmed.info, e la sua funzione principale è "Takes you to first commit of any GitHub repository".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Git First

Scarica i file di estensione Git First in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Git First Git First
ID bkodimdeilmanedhmadkjickmfobpjde
URL Ufficiale https://chromewebstore.google.com/detail/git-first/bkodimdeilmanedhmadkjickmfobpjde
Descrizione Takes you to first commit of any GitHub repository
Dimensione del File 16.82 KB
Conteggio Installazioni 188
Versione Corrente 1.0.1
Ultimo Aggiornamento 2018-11-02
Data di Pubblicazione 2018-11-02
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore https://kamranahmed.info
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/kamranahmedse/git-first
Lingue Supportate 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"
        ]
    }
}