Git Harvest

Provides Harvest time tracking widgets in Gitlab and Github.

Git Harvest là gì?

Git Harvest là một tiện ích mở rộng Chrome được phát triển bởi andyg5000, và tính năng chính của nó là "Provides Harvest time tracking widgets in Gitlab and Github.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Git Harvest

Tải xuống các tệp mở rộng Git Harvest dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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/                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Git Harvest Git Harvest
ID ofbfhaiknhlanbliolbkiidknakaldmo
URL Chính Thức https://chromewebstore.google.com/detail/git-harvest/ofbfhaiknhlanbliolbkiidknakaldmo
Mô tả Provides Harvest time tracking widgets in Gitlab and Github.
Kích Thước Tệp 369 KB
Số Lần Cài Đặt 340
Phiên Bản Hiện Tại 0.0.27
Cập Nhật Lần Cuối 2023-06-09
Ngày Phát Hành 2020-03-22
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển andyg5000
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://gitlab.com/blueoakinteractive/gitlab-harvest/
URL Trang Trợ Giúp https://gitlab.com/blueoakinteractive/gitlab-harvest/issues
Ngôn Ngữ Được Hỗ Trợ 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
    }
}