Git Time Machine

Time machine for files on github

Co je Git Time Machine?

Git Time Machine je rozšíření Chrome vyvinuté Patrick Moody, a jeho hlavní funkcí je „Time machine for files on github“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Git Time Machine

Stáhněte si soubory rozšíření Git Time Machine ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Git Time Machine Git Time Machine
ID cbkeilfjfgflmjhohjkcecfbfbimpmkp
Oficiální URL https://chrome.google.com/webstore/detail/git-time-machine/cbkeilfjfgflmjhohjkcecfbfbimpmkp
Popis Time machine for files on github
Velikost souboru 119 KB
Počet instalací 136
Aktuální Verze 1.2
Poslední Aktualizace 2015-11-12
Datum Vydání 2015-11-12
Hodnocení 4.83/5 Celkem 6 Hodnocení
Vývojář Patrick Moody
Typ Platby free
Webové stránky Rozšíření http://www.gittimemachine.com/
Podporované Jazyky 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"
    ]
}