Git Time Machine

Time machine for files on github

Git Time Machineとは何ですか?

Git Time MachineはPatrick Moodyによって開発されたChromeの拡張機能で、その主な機能は「Time machine for files on github」です。

拡張機能のスクリーンショット

screenshot

Git Time Machine拡張機能のCRXファイルをダウンロード

Git Time Machine拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Git Time Machine Git Time Machine
ID cbkeilfjfgflmjhohjkcecfbfbimpmkp
公式URL https://chrome.google.com/webstore/detail/git-time-machine/cbkeilfjfgflmjhohjkcecfbfbimpmkp
説明 Time machine for files on github
ファイルサイズ 119 KB
インストール数 136
現在のバージョン 1.2
最終更新日 2015-11-12
公開日 2015-11-12
評価 4.83/5 合計 6 レビュー
開発者 Patrick Moody
支払い方法 free
拡張機能のウェブサイト http://www.gittimemachine.com/
対応言語 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"
    ]
}