GitHub Time Tracking
Add time tracking to the GitHub Issue Tracker with Harvest.
GitHub Time Tracking là gì?
GitHub Time Tracking là một tiện ích mở rộng Chrome được phát triển bởi Klokan Technologies, và tính năng chính của nó là "Add time tracking to the GitHub Issue Tracker with Harvest.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng GitHub Time Tracking
Tải xuống các tệp mở rộng GitHub Time Tracking dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | fgkmkpoadhhloghmnnbodkoikmffafoe |
URL Chính Thức | https://chrome.google.com/webstore/detail/github-time-tracking/fgkmkpoadhhloghmnnbodkoikmffafoe |
Mô tả | Add time tracking to the GitHub Issue Tracker with Harvest. |
Kích Thước Tệp | 167 KB |
Số Lần Cài Đặt | 216 |
Phiên Bản Hiện Tại | 0.7.1 |
Cập Nhật Lần Cuối | 2014-06-17 |
Ngày Phát Hành | 2014-06-17 |
Đánh Giá | 3.60/5 Tổng số 10 Đánh Giá |
Nhà Phát Triển | Klokan Technologies |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://try.hrv.st/66lx |
URL Trang Trợ Giúp | http://try.hrv.st/66lx |
URL Trang Chính Sách Bảo Mật | https://www.oldmapsonline.org/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |