Git Time Machine
Time machine for files on github
Что такое Git Time Machine?
Git Time Machine - это расширение Chrome, разработанное Patrick Moody, и его основная функция - "Time machine for files on github".
Снимки экрана расширения
Скачать файл CRX расширения Git Time Machine
Скачайте файлы расширений 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. Основная информация о расширении
| Название | |
| 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"
]
} | |