YouTrack Time Tracker

Adds Start/Stop button to track time in YouTrack.

YouTrack Time Tracker란 무엇입니까?

YouTrack Time Tracker은(는) Sergey Korzh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds Start/Stop button to track time in YouTrack."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

YouTrack Time Tracker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        YouTrack Time Tracker is a Chrome extension that provides a convenient and efficient way to track time in the YouTrack. This extension allows users to add a start/stop button on the issue page, which makes it easy to keep track of time spent on specific tasks or projects.

With YouTrack Time Tracker, users can seamlessly integrate time tracking into their workflow without the need for manual tracking or additional tools. The extension is designed to be user-friendly, intuitive, and easy to install, making it ideal for professionals, teams, and organizations looking to streamline their time tracking process.

It is a valuable tool for anyone who needs to track their time in the YouTrack Project management tool, as it helps users to manage their time more effectively, increase productivity, and optimize their workflow.

Github repository: https://github.com/ikorgik/youtrack-timer                    

확장 프로그램 기본 정보

이름 YouTrack Time Tracker YouTrack Time Tracker
ID nahoodjdihpfpfjiblalpnkaanebkdnf
공식 URL https://chromewebstore.google.com/detail/youtrack-time-tracker/nahoodjdihpfpfjiblalpnkaanebkdnf
설명 Adds Start/Stop button to track time in YouTrack.
파일 크기 162 KB
설치 횟수 113
현재 버전 1.0.7
최근 업데이트 2024-01-03
출시 날짜 2023-04-10
평점 5.00/5 총 2 개의 평점
개발자 Sergey Korzh
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "content_scripts": [
        {
            "js": [
                "js\/api.js",
                "js\/content-script.js"
            ],
            "matches": [
                "https:\/\/*.youtrack.cloud\/*"
            ],
            "css": [
                "css\/content.css"
            ]
        }
    ],
    "description": "Adds Start\/Stop button to track time in YouTrack.",
    "icons": {
        "128": "images\/[email protected]",
        "16": "images\/[email protected]",
        "48": "images\/[email protected]"
    },
    "manifest_version": 3,
    "name": "YouTrack Time Tracker",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "19": "images\/[email protected]",
            "38": "images\/[email protected]"
        },
        "default_title": "Start a YouTrack timer",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "service-worker.js"
    },
    "options_page": "options.html",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0.7"
}