Harvest/Jira worklog integration

Puts a button in Harvest that let's you log your harvest time directly into JIRA

Harvest/Jira worklog integration란 무엇입니까?

Harvest/Jira worklog integration은(는) eatskolnikov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Puts a button in Harvest that let's you log your harvest time directly into JIRA"입니다.

확장 프로그램 스크린샷

screenshot

Harvest/Jira worklog integration 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Puts a button in Harvest that let's you log your harvest time directly into JIRA

This idea came up after wasting a lot of time moving the tracked time from harvest to JIRA tasks. You see, JIRA and Harvest measure time differently. 

Here is an example:

Let's say you worked on a task for one hour and 6 minutes
- In harvest you would get something like: 1.10
- In JIRA you would have to calculate the equivalent of that number to the exact time, to get something like: 1h 6m

It get's pretty annoying, wasting time to calculate mere minutes, with this tool all you have to do is click two buttons and you're set. No more wasting time writing the time down.                    

확장 프로그램 기본 정보

이름 Harvest/Jira worklog integration Harvest/Jira worklog integration
ID jnljfejacjncgpphbcpenmfjgdpeaapd
공식 URL https://chromewebstore.google.com/detail/harvestjira-worklog-integ/jnljfejacjncgpphbcpenmfjgdpeaapd
설명 Puts a button in Harvest that let's you log your harvest time directly into JIRA
파일 크기 129 KB
설치 횟수 55
현재 버전 1.0.3
최근 업데이트 2016-11-20
출시 날짜 2016-11-20
평점 3.67/5 총 3 개의 평점
개발자 eatskolnikov
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/eatskolnikov/harvest-jira-worklog-integration
도움말 페이지 URL https://github.com/eatskolnikov/harvest-jira-worklog-integration
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Harvest\/Jira worklog integration",
    "short_name": "Harvest\/JIRA worklog",
    "version": "1.0.3",
    "manifest_version": 2,
    "description": "Puts a button in Harvest that let's you log your harvest time directly into JIRA",
    "background": {
        "scripts": [
            "scripts\/db.js",
            "scripts\/background.js"
        ]
    },
    "web_accessible_resources": [
        "html\/modal.html"
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "Harvest\/Jira worklog integration"
    },
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "options_page": "html\/settings.html",
    "options_ui": {
        "page": "html\/settings.html",
        "chrome_style": true
    },
    "permissions": [
        "*:\/\/*.atlassian.net\/*",
        "*:\/\/*.harvestapp.com\/*",
        "webRequest",
        "webRequestBlocking",
        "alarms",
        "contextMenus",
        "notifications",
        "idle",
        "tabs"
    ],
    "optional_permissions": [
        "*:\/\/*\/"
    ]
}