Git Time Machine

Time machine for files on github

Apa itu Git Time Machine?

Git Time Machine adalah ekstensi Chrome yang dikembangkan oleh Patrick Moody, dan fitur utamanya adalah "Time machine for files on github".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Git Time Machine

Unduh file ekstensi Git Time Machine 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

                        Add a "time machine" button to GitHub file page that lets you view the history of a single file. Click to go back and forward through commits and easily visualize how the code is modified through time.                    

Informasi Dasar Ekstensi

Nama Git Time Machine Git Time Machine
ID cbkeilfjfgflmjhohjkcecfbfbimpmkp
URL Resmi https://chrome.google.com/webstore/detail/git-time-machine/cbkeilfjfgflmjhohjkcecfbfbimpmkp
Deskripsi Time machine for files on github
Ukuran File 119 KB
Jumlah Instalasi 136
Versi Saat Ini 1.2
Terakhir Diperbarui 2015-11-12
Tanggal Publikasi 2015-11-12
Penilaian 4.83/5 Total 6 Penilaian
Pengembang Patrick Moody
Tipe Pembayaran free
Situs Ekstensi http://www.gittimemachine.com/
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Git Time Machine",
    "version": "1.2",
    "description": "Time machine for files on github",
    "author": "Patrick Moody",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "css": [
                "time_machine_button.css"
            ],
            "js": [
                "time_machine_button.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ],
    "icons": {
        "128": "icon.png"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "galaxy_button.png"
    ]
}