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 |
Eメール | [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 } } |