YouTrack support for Harvest Time Tracker

This extension adds YouTrack support to Harvest Time Tracker extension (should be installed to work)

YouTrack support for Harvest Time Tracker란 무엇입니까?

YouTrack support for Harvest Time Tracker은(는) extempl에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension adds YouTrack support to Harvest Time Tracker extension (should be installed to work)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This extension adds YouTrack integration for Harvest Time Tracker extension (https://chrome.google.com/webstore/detail/harvest-time-tracker/fbpiglieekigmkeebmeohkelfpjjlaia).

Functional:

Adds Harvest tracker button to ordinary issue view and agile issue popup
Adds one-way (H -> YT) time tracking synchronization
works within 25 hours (syncs yesterday if triggered in first hour)
can be triggered by extension button
normally runs every hour automatically
if entry is in progress - tries to sync in 10 min
can update synced entries


Notes:

For initial config see extension options
Harvest entry notes should start with YouTrack issue id: XYZ-123
YouTrack entry type can be set from Harvest task. Obviously, YT should contain it in list. "No Type" by default.
YT work entry always will be set by current logged in user
Entry will be updated each sync attempt (is changed) even if in progress.
Next sync time is also available in the title of the browser button                    

확장 프로그램 기본 정보

이름 YouTrack support for Harvest Time Tracker YouTrack support for Harvest Time Tracker
ID fokacpffkmckblabfebdeadojcffbfhl
공식 URL https://chromewebstore.google.com/detail/youtrack-support-for-harv/fokacpffkmckblabfebdeadojcffbfhl
설명 This extension adds YouTrack support to Harvest Time Tracker extension (should be installed to work)
파일 크기 67.44 KB
설치 횟수 103
현재 버전 2.5.9.1
최근 업데이트 2018-11-17
출시 날짜 2018-11-17
평점 5.00/5 총 1 개의 평점
개발자 extempl
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/extempl/youtrack-support-for-harvest-extension
도움말 페이지 URL https://github.com/extempl/youtrack-support-for-harvest-extension/issues
지원되는 언어 en
manifest.json
{
    "content_scripts": [
        {
            "js": [
                "youtrack.js"
            ],
            "matches": [
                "https:\/\/*.myjetbrains.com\/youtrack\/*"
            ],
            "css": [
                "css\/yt-timer.css"
            ]
        }
    ],
    "description": "This extension adds YouTrack support to Harvest Time Tracker extension (should be installed to work)",
    "icons": {
        "128": "images\/[email protected]",
        "16": "images\/[email protected]",
        "48": "images\/[email protected]"
    },
    "manifest_version": 2,
    "background": {
        "scripts": [
            "js\/lib\/require.js",
            "js\/requireConfig.js",
            "js\/lib\/jquery-ajax-sizzle.min.js",
            "js\/eventPage.js"
        ]
    },
    "name": "YouTrack support for Harvest Time Tracker",
    "permissions": [
        "https:\/\/accounts.google.com\/*",
        "https:\/\/id.getharvest.com\/*",
        "https:\/\/*.harvestapp.com\/*",
        "https:\/\/*.myjetbrains.com\/*",
        "storage",
        "alarms"
    ],
    "browser_action": {
        "default_icon": "images\/[email protected]",
        "default_title": "instant sync"
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    },
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.5.9.1"
}