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.”。
擴展截圖
下載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 |
ID | ofbfhaiknhlanbliolbkiidknakaldmo |
官方網址 | 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 } } |