Git Harvest

Provides Harvest time tracking widgets in Gitlab and Github.

Git Harvest란 무엇입니까?

Git Harvest은(는) andyg5000에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Provides Harvest time tracking widgets in Gitlab and Github."입니다.

확장 프로그램 스크린샷

screenshot

Git Harvest 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Provides Harvest time tracking in GitLab and Github issues. Hosted versions are supported out of the box. Self-hosted versions can be added in the extension settings. 

Source: https://gitlab.com/blueoakinteractive/gitlab-harvest/                    

확장 프로그램 기본 정보

이름 Git Harvest Git Harvest
ID ofbfhaiknhlanbliolbkiidknakaldmo
공식 URL https://chromewebstore.google.com/detail/git-harvest/ofbfhaiknhlanbliolbkiidknakaldmo
설명 Provides Harvest time tracking widgets in Gitlab and Github.
파일 크기 369 KB
설치 횟수 340
현재 버전 0.0.27
최근 업데이트 2023-06-09
출시 날짜 2020-03-22
평점 4.00/5 총 1 개의 평점
개발자 andyg5000
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://gitlab.com/blueoakinteractive/gitlab-harvest/
도움말 페이지 URL https://gitlab.com/blueoakinteractive/gitlab-harvest/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.27",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "storage",
        "*:\/\/*\/*\/*\/issues\/*"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "frame.html",
        "scripts\/frame.js",
        "styles\/frame.css"
    ],
    "content_security_policy": "report-uri \/csp_reports; img-src *; object-src 'self'; frame-src https:\/\/*.harvestapp.com; script-src 'self'; style-src 'self'",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": false
    }
}