Git First

Takes you to first commit of any GitHub repository

Apa itu Git First?

Git First adalah ekstensi Chrome yang dikembangkan oleh https://kamranahmed.info, dan fitur utamanya adalah "Takes you to first commit of any GitHub repository".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Git First

Unduh file ekstensi Git First dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Git First Git First
ID bkodimdeilmanedhmadkjickmfobpjde
URL Resmi https://chromewebstore.google.com/detail/git-first/bkodimdeilmanedhmadkjickmfobpjde
Deskripsi Takes you to first commit of any GitHub repository
Ukuran File 16.82 KB
Jumlah Instalasi 188
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2018-11-02
Tanggal Publikasi 2018-11-02
Penilaian 5.00/5 Total 4 Penilaian
Pengembang https://kamranahmed.info
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/kamranahmedse/git-first
Bahasa yang Didukung 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"
        ]
    }
}