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文件

下载Git Harvest扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
    }
}