Git First

Takes you to first commit of any GitHub repository

Co to jest Git First?

Git First to rozszerzenie Chrome opracowane przez https://kamranahmed.info, a jego główną funkcją jest „Takes you to first commit of any GitHub repository”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Git First

Pobierz pliki rozszerzeń Git First w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Git First Git First
ID bkodimdeilmanedhmadkjickmfobpjde
Oficjalny URL https://chromewebstore.google.com/detail/git-first/bkodimdeilmanedhmadkjickmfobpjde
Opis Takes you to first commit of any GitHub repository
Rozmiar pliku 16.82 KB
Liczba instalacji 188
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2018-11-02
Data Publikacji 2018-11-02
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper https://kamranahmed.info
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/kamranahmedse/git-first
Obsługiwane Języki 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"
        ]
    }
}