Git Time Machine
Time machine for files on github
Was ist Git Time Machine?
Git Time Machine ist eine Chrome-Erweiterung, die von Patrick Moody entwickelt wurde, und ihr Hauptmerkmal ist "Time machine for files on github".
Erweiterungsscreenshots
Git Time Machine-Erweiterungs-CRX-Datei herunterladen
Laden Sie Git Time Machine-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | cbkeilfjfgflmjhohjkcecfbfbimpmkp |
| Offizielle URL | https://chrome.google.com/webstore/detail/git-time-machine/cbkeilfjfgflmjhohjkcecfbfbimpmkp |
| Beschreibung | Time machine for files on github |
| Dateigröße | 119 KB |
| Installationsanzahl | 136 |
| Aktuelle Version | 1.2 |
| Letztes Update | 2015-11-12 |
| Veröffentlichungsdatum | 2015-11-12 |
| Bewertung | 4.83/5 Insgesamt 6 Bewertungen |
| Entwickler | Patrick Moody |
| Zahlungsart | free |
| Erweiterungswebsite | http://www.gittimemachine.com/ |
| Unterstützte Sprachen | 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"
]
} | |