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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 } } |