Git Harvest

Provides Harvest time tracking widgets in Gitlab and Github.

Vad är Git Harvest?

Git Harvest är en Chrome-tillägg utvecklad av andyg5000, och dess huvudfunktion är "Provides Harvest time tracking widgets in Gitlab and Github.".

Tilläggsskärmbilder

screenshot

Ladda ner Git Harvest-förlängningens CRX-fil

Ladda ner Git Harvest-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Git Harvest Git Harvest
ID ofbfhaiknhlanbliolbkiidknakaldmo
Officiell webbadress https://chromewebstore.google.com/detail/git-harvest/ofbfhaiknhlanbliolbkiidknakaldmo
Beskrivning Provides Harvest time tracking widgets in Gitlab and Github.
Filstorlek 369 KB
Antal Installationer 340
Aktuell Version 0.0.27
Senast Uppdaterad 2023-06-09
Publiceringsdatum 2020-03-22
Betyg 4.00/5 Totalt 1 Betyg
Utvecklare andyg5000
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://gitlab.com/blueoakinteractive/gitlab-harvest/
Hjälpsida URL https://gitlab.com/blueoakinteractive/gitlab-harvest/issues
Stödda Språk 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
    }
}