Git Time Machine

Time machine for files on github

What is Git Time Machine?

Git Time Machine is a Chrome extension developed by Patrick Moody, and its main feature is "Time machine for files on github".

Extension Screenshots

screenshot

Download Git Time Machine Extension CRX File

Download Git Time Machine extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Git Time Machine Git Time Machine
ID cbkeilfjfgflmjhohjkcecfbfbimpmkp
Official URL https://chrome.google.com/webstore/detail/git-time-machine/cbkeilfjfgflmjhohjkcecfbfbimpmkp
Description Time machine for files on github
File Size 119 KB
Installation Count 136
Current Version 1.2
Last Updated 2015-11-12
Publish Date 2015-11-12
Rating 4.83/5 Total 6 Ratings
Developer Patrick Moody
Payment Type free
Extension Website http://www.gittimemachine.com/
Supported Languages 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"
    ]
}