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?
YouTime - A YouTrack Timer是由https://philipp.ninja开发的Chrome扩展程序,该扩展的主要功能是“The browser extension acts as a simple start/stop timer, and adds the recorded time to YouTrack issues as workitems.”。
扩展截图
下载YouTime - A YouTrack Timer扩展crx文件
下载YouTime - A YouTrack Timer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | YouTime - A YouTrack Timer |
ID | aophgleohlolehodpabbddkfiiibecbj |
官方URL | https://chromewebstore.google.com/detail/youtime-a-youtrack-timer/aophgleohlolehodpabbddkfiiibecbj |
简介 | The browser extension acts as a simple start/stop timer, and adds the recorded time to YouTrack issues as workitems. |
文件大小 | 1.03 MB |
安装次数 | 30 |
当前版本 | 1.0.3 |
更新时间 | 2020-12-06 |
上架时间 | 2020-09-22 |
评分 | 5.00/5 共1次评分 |
开发者 | https://philipp.ninja |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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 } } |