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" ] } |