Git Harvest
Provides Harvest time tracking widgets in Gitlab and Github.
O que é Git Harvest?
Git Harvest é uma extensão do Chrome desenvolvida por andyg5000, e sua principal característica é "Provides Harvest time tracking widgets in Gitlab and Github.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Git Harvest
Baixe arquivos de extensão Git Harvest no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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/
Informações Básicas da Extensão
Nome | Git Harvest |
ID | ofbfhaiknhlanbliolbkiidknakaldmo |
URL Oficial | https://chromewebstore.google.com/detail/git-harvest/ofbfhaiknhlanbliolbkiidknakaldmo |
Descrição | Provides Harvest time tracking widgets in Gitlab and Github. |
Tamanho do Arquivo | 369 KB |
Contagem de Instalações | 340 |
Versão Atual | 0.0.27 |
Última Atualização | 2023-06-09 |
Data de Publicação | 2020-03-22 |
Classificação | 4.00/5 Total de 1 Avaliações |
Desenvolvedor | andyg5000 |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://gitlab.com/blueoakinteractive/gitlab-harvest/ |
URL da Página de Ajuda | https://gitlab.com/blueoakinteractive/gitlab-harvest/issues |
Idiomas Suportados | 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 } } |