Git Harvest
Provides Harvest time tracking widgets in Gitlab and Github.
Co je Git Harvest?
Git Harvest je rozšíření Chrome vyvinuté andyg5000, a jeho hlavní funkcí je „Provides Harvest time tracking widgets in Gitlab and Github.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Git Harvest
Stáhněte si soubory rozšíření Git Harvest ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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/
Základní Informace o Rozšíření
Název | Git Harvest |
ID | ofbfhaiknhlanbliolbkiidknakaldmo |
Oficiální URL | https://chromewebstore.google.com/detail/git-harvest/ofbfhaiknhlanbliolbkiidknakaldmo |
Popis | Provides Harvest time tracking widgets in Gitlab and Github. |
Velikost souboru | 369 KB |
Počet instalací | 340 |
Aktuální Verze | 0.0.27 |
Poslední Aktualizace | 2023-06-09 |
Datum Vydání | 2020-03-22 |
Hodnocení | 4.00/5 Celkem 1 Hodnocení |
Vývojář | andyg5000 |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://gitlab.com/blueoakinteractive/gitlab-harvest/ |
URL Stránky Nápovědy | https://gitlab.com/blueoakinteractive/gitlab-harvest/issues |
Podporované Jazyky | 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 } } |