Git Harvest
Provides Harvest time tracking widgets in Gitlab and Github.
Hvad er Git Harvest?
Git Harvest er en Chrome-udvidelse udviklet af andyg5000, og dens hovedfunktion er "Provides Harvest time tracking widgets in Gitlab and Github.".
Udvidelsesskærmbilleder
Download Git Harvest-udvidelses-CRX-fil
Download Git Harvest-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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/ Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | ofbfhaiknhlanbliolbkiidknakaldmo |
| Officiel URL | https://chromewebstore.google.com/detail/git-harvest/ofbfhaiknhlanbliolbkiidknakaldmo |
| Beskrivelse | Provides Harvest time tracking widgets in Gitlab and Github. |
| Filstørrelse | 369 KB |
| Antal Installationer | 340 |
| Nuværende Version | 0.0.27 |
| Senest Opdateret | 2023-06-09 |
| Udgivelsesdato | 2020-03-22 |
| Bedømmelse | 4.00/5 Samlet 1 Bedømmelser |
| Udvikler | andyg5000 |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://gitlab.com/blueoakinteractive/gitlab-harvest/ |
| Hjælpeside-URL | https://gitlab.com/blueoakinteractive/gitlab-harvest/issues |
| Understøttede Sprog | 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
}
} | |