Git Harvest

Provides Harvest time tracking widgets in Gitlab and Github.

What is Git Harvest?

Git Harvest is a Chrome extension developed by andyg5000, and its main feature is "Provides Harvest time tracking widgets in Gitlab and Github.".

Extension Screenshots

screenshot

Download Git Harvest Extension CRX File

Download Git Harvest extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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/                    

Extension Basic Information

Name Git Harvest Git Harvest
ID ofbfhaiknhlanbliolbkiidknakaldmo
Official URL https://chromewebstore.google.com/detail/git-harvest/ofbfhaiknhlanbliolbkiidknakaldmo
Description Provides Harvest time tracking widgets in Gitlab and Github.
File Size 369 KB
Installation Count 340
Current Version 0.0.27
Last Updated 2023-06-09
Publish Date 2020-03-22
Rating 4.00/5 Total 1 Ratings
Developer andyg5000
Email [email protected]
Payment Type free
Extension Website https://gitlab.com/blueoakinteractive/gitlab-harvest/
Help Page URL https://gitlab.com/blueoakinteractive/gitlab-harvest/issues
Supported Languages 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
    }
}