GitHub Time Tracking
Add time tracking to the GitHub Issue Tracker with Harvest.
Что такое GitHub Time Tracking?
GitHub Time Tracking - это расширение Chrome, разработанное Klokan Technologies, и его основная функция - "Add time tracking to the GitHub Issue Tracker with Harvest.".
Снимки экрана расширения
Скачать файл CRX расширения GitHub Time Tracking
Скачайте файлы расширений GitHub Time Tracking в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
An one-click time tracking functionality integrated with all Issues or Pull requests in the GitHub system.
Usage:
- Register the free account at Harvest system:
http://try.hrv.st/66lx
- Then install this plugin. A new button appears next to the #ticket number
- With one click you can start to track the time. The dialog also shows the sum of time already spent by you on this ticket.
- Harvest provides great project reports - with links back to the GitHub tickets.
- It is also possible to directly create nice looking invoices. Основная информация о расширении
| Название | |
| ID | fgkmkpoadhhloghmnnbodkoikmffafoe |
| Официальный URL | https://chrome.google.com/webstore/detail/github-time-tracking/fgkmkpoadhhloghmnnbodkoikmffafoe |
| Описание | Add time tracking to the GitHub Issue Tracker with Harvest. |
| Размер файла | 167 KB |
| Количество установок | 216 |
| Текущая Версия | 0.7.1 |
| Последнее Обновление | 2014-06-17 |
| Дата публикации | 2014-06-17 |
| Рейтинг | 3.60/5 Всего 10 оценок |
| Разработчик | Klokan Technologies |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | http://try.hrv.st/66lx |
| URL страницы помощи | http://try.hrv.st/66lx |
| URL страницы политики конфиденциальности | https://www.oldmapsonline.org/privacy |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "GitHub Time Tracking",
"version": "0.7.1",
"manifest_version": 2,
"description": "Add time tracking to the GitHub Issue Tracker with Harvest.",
"icons": {
"128": "img\/github-time-tracking-128.png",
"48": "img\/github-time-tracking-48.png",
"16": "img\/github-time-tracker-16.png"
},
"background": {
"scripts": [
"lib\/background.js"
],
"persistent": true
},
"content_scripts": [
{
"js": [
"data\/index.js"
],
"matches": [
"https:\/\/github.com\/*\/issues\/*",
"https:\/\/github.com\/*\/pull\/*"
]
}
],
"content_security_policy": "script-src 'self' https:\/\/*.harvestapp.com; object-src 'self'",
"permissions": [
"webRequest",
"webRequestBlocking",
"https:\/\/github.com\/*",
"https:\/\/*.harvestapp.com\/*",
"tabs"
]
} | |