YouTime - A YouTrack Timer
The browser extension acts as a simple start/stop timer, and adds the recorded time to YouTrack issues as workitems.
YouTime - A YouTrack Timer là gì?
YouTime - A YouTrack Timer là một tiện ích mở rộng Chrome được phát triển bởi https://philipp.ninja, và tính năng chính của nó là "The browser extension acts as a simple start/stop timer, and adds the recorded time to YouTrack issues as workitems.".
Ả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 YouTime - A YouTrack Timer
Tải xuống các tệp mở rộng YouTime - A YouTrack Timer 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
YouTrack's inbuilt time tracking does not offer great tools for starting and stopping timers. Other third party time trackers lack integration with YouTrack or do not add the tracked time to the issues. This extension provides a simple start/stop style timer which has no external dependencies but YouTrack itself. All tracked time is added to issues in the form of work items. No signup is required and no data is sent anywhere, but to your own YouTrack instance.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | YouTime - A YouTrack Timer |
ID | aophgleohlolehodpabbddkfiiibecbj |
URL Chính Thức | https://chromewebstore.google.com/detail/youtime-a-youtrack-timer/aophgleohlolehodpabbddkfiiibecbj |
Mô tả | The browser extension acts as a simple start/stop timer, and adds the recorded time to YouTrack issues as workitems. |
Kích Thước Tệp | 1.03 MB |
Số Lần Cài Đặt | 30 |
Phiên Bản Hiện Tại | 1.0.3 |
Cập Nhật Lần Cuối | 2020-12-06 |
Ngày Phát Hành | 2020-09-22 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | https://philipp.ninja |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTime - A YouTrack Timer", "short_name": "YouTime", "version": "1.0.3", "description": "The browser extension acts as a simple start\/stop timer, and adds the recorded time to YouTrack issues as workitems.", "permissions": [ "storage", "alarms", "declarativeContent" ], "icons": { "16": "assets\/favicon.ico", "128": "assets\/icon_128.png", "256": "assets\/icon_256.png", "512": "assets\/icon_512.png" }, "browser_action": { "default_popup": "index.html?#\/popup", "default_title": "YouTime", "default_icon": { "128": "assets\/icon_128.png", "256": "assets\/icon_256.png", "512": "assets\/icon_512.png" } }, "options_page": "index.html?#\/options", "optional_permissions": [ "http:\/\/*\/*", "https:\/\/*\/" ], "background": { "scripts": [ "backgroundPage.js" ], "persistent": false } } |