Git Time Machine

Time machine for files on github

Co to jest Git Time Machine?

Git Time Machine to rozszerzenie Chrome opracowane przez Patrick Moody, a jego główną funkcją jest „Time machine for files on github”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Git Time Machine

Pobierz pliki rozszerzeń Git Time Machine w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Git Time Machine Git Time Machine
ID cbkeilfjfgflmjhohjkcecfbfbimpmkp
Oficjalny URL https://chrome.google.com/webstore/detail/git-time-machine/cbkeilfjfgflmjhohjkcecfbfbimpmkp
Opis Time machine for files on github
Rozmiar pliku 119 KB
Liczba instalacji 136
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2015-11-12
Data Publikacji 2015-11-12
Ocena 4.83/5 Łącznie 6 Oceny
Deweloper Patrick Moody
Typ Płatności free
Strona Rozszerzenia http://www.gittimemachine.com/
Obsługiwane Języki 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"
    ]
}