Git First

Takes you to first commit of any GitHub repository

Wat is Git First?

Git First is een Chrome-extensie ontwikkeld door https://kamranahmed.info, en de belangrijkste functie is "Takes you to first commit of any GitHub repository".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Git First

Download Git First-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Git First Git First
ID bkodimdeilmanedhmadkjickmfobpjde
Officiële URL https://chromewebstore.google.com/detail/git-first/bkodimdeilmanedhmadkjickmfobpjde
Beschrijving Takes you to first commit of any GitHub repository
Bestandsgrootte 16.82 KB
Aantal Installaties 188
Huidige Versie 1.0.1
Laatst Bijgewerkt 2018-11-02
Publicatiedatum 2018-11-02
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar https://kamranahmed.info
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/kamranahmedse/git-first
Ondersteunde Talen 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"
        ]
    }
}