Git Harvest

Provides Harvest time tracking widgets in Gitlab and Github.

Co to jest Git Harvest?

Git Harvest to rozszerzenie Chrome opracowane przez andyg5000, a jego główną funkcją jest „Provides Harvest time tracking widgets in Gitlab and Github.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Git Harvest

Pobierz pliki rozszerzeń Git Harvest w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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/                    

Podstawowe informacje o rozszerzeniu

Nazwa Git Harvest Git Harvest
ID ofbfhaiknhlanbliolbkiidknakaldmo
Oficjalny URL https://chromewebstore.google.com/detail/git-harvest/ofbfhaiknhlanbliolbkiidknakaldmo
Opis Provides Harvest time tracking widgets in Gitlab and Github.
Rozmiar pliku 369 KB
Liczba instalacji 340
Aktualna Wersja 0.0.27
Ostatnia Aktualizacja 2023-06-09
Data Publikacji 2020-03-22
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper andyg5000
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://gitlab.com/blueoakinteractive/gitlab-harvest/
Adres URL Strony Pomocy https://gitlab.com/blueoakinteractive/gitlab-harvest/issues
Obsługiwane Języki 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
    }
}