GitHub Time Tracking
Add time tracking to the GitHub Issue Tracker with Harvest.
¿Qué es GitHub Time Tracking?
GitHub Time Tracking es una extensión de Chrome desarrollada por Klokan Technologies, y su función principal es "Add time tracking to the GitHub Issue Tracker with Harvest.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión GitHub Time Tracking
Descarga archivos de extensión GitHub Time Tracking en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | fgkmkpoadhhloghmnnbodkoikmffafoe |
URL Oficial | https://chrome.google.com/webstore/detail/github-time-tracking/fgkmkpoadhhloghmnnbodkoikmffafoe |
Descripción | Add time tracking to the GitHub Issue Tracker with Harvest. |
Tamaño del Archivo | 167 KB |
Cantidad de Instalaciones | 216 |
Versión Actual | 0.7.1 |
Última Actualización | 2014-06-17 |
Fecha de Publicación | 2014-06-17 |
Calificación | 3.60/5 Total de 10 Calificaciones |
Desarrollador | Klokan Technologies |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | http://try.hrv.st/66lx |
URL de la Página de Ayuda | http://try.hrv.st/66lx |
URL de la Página de Política de Privacidad | https://www.oldmapsonline.org/privacy |
Idiomas Soportados | 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" ] } |