Git Harvest

Provides Harvest time tracking widgets in Gitlab and Github.

Cos'è Git Harvest?

Git Harvest è un'estensione di Chrome sviluppata da andyg5000, e la sua funzione principale è "Provides Harvest time tracking widgets in Gitlab and Github.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Git Harvest

Scarica i file di estensione Git Harvest in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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/                    

Informazioni di Base sull'Estensione

Nome Git Harvest Git Harvest
ID ofbfhaiknhlanbliolbkiidknakaldmo
URL Ufficiale https://chromewebstore.google.com/detail/git-harvest/ofbfhaiknhlanbliolbkiidknakaldmo
Descrizione Provides Harvest time tracking widgets in Gitlab and Github.
Dimensione del File 369 KB
Conteggio Installazioni 340
Versione Corrente 0.0.27
Ultimo Aggiornamento 2023-06-09
Data di Pubblicazione 2020-03-22
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore andyg5000
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://gitlab.com/blueoakinteractive/gitlab-harvest/
URL della Pagina di Aiuto https://gitlab.com/blueoakinteractive/gitlab-harvest/issues
Lingue Supportate 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
    }
}