Git Time Machine
Time machine for files on github
Vad är Git Time Machine?
Git Time Machine är en Chrome-tillägg utvecklad av Patrick Moody, och dess huvudfunktion är "Time machine for files on github".
Tilläggsskärmbilder
Ladda ner Git Time Machine-förlängningens CRX-fil
Ladda ner Git Time Machine-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | cbkeilfjfgflmjhohjkcecfbfbimpmkp |
| Officiell webbadress | https://chrome.google.com/webstore/detail/git-time-machine/cbkeilfjfgflmjhohjkcecfbfbimpmkp |
| Beskrivning | Time machine for files on github |
| Filstorlek | 119 KB |
| Antal Installationer | 136 |
| Aktuell Version | 1.2 |
| Senast Uppdaterad | 2015-11-12 |
| Publiceringsdatum | 2015-11-12 |
| Betyg | 4.83/5 Totalt 6 Betyg |
| Utvecklare | Patrick Moody |
| Betalningssätt | free |
| Tilläggswebbplats | http://www.gittimemachine.com/ |
| Stödda Språk | 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"
]
} | |