Git Time Machine

Time machine for files on github

Cos'è Git Time Machine?

Git Time Machine è un'estensione di Chrome sviluppata da Patrick Moody, e la sua funzione principale è "Time machine for files on github".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Git Time Machine

Scarica i file di estensione Git Time Machine 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Git Time Machine Git Time Machine
ID cbkeilfjfgflmjhohjkcecfbfbimpmkp
URL Ufficiale https://chrome.google.com/webstore/detail/git-time-machine/cbkeilfjfgflmjhohjkcecfbfbimpmkp
Descrizione Time machine for files on github
Dimensione del File 119 KB
Conteggio Installazioni 136
Versione Corrente 1.2
Ultimo Aggiornamento 2015-11-12
Data di Pubblicazione 2015-11-12
Valutazione 4.83/5 Totale 6 Valutazioni
Sviluppatore Patrick Moody
Tipo di Pagamento free
Sito Web dell'Estensione http://www.gittimemachine.com/
Lingue Supportate 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"
    ]
}