GitLab - Time Tracking

Control the time tracking in the GitLab with this extension.

Co to jest GitLab - Time Tracking?

GitLab - Time Tracking to rozszerzenie Chrome opracowane przez lucas.monteiro, a jego główną funkcją jest „Control the time tracking in the GitLab with this extension.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia GitLab - Time Tracking

Pobierz pliki rozszerzeń GitLab - Time Tracking 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

                        Control the time tracking in the GitLab with this extension                    

Podstawowe informacje o rozszerzeniu

Nazwa GitLab - Time Tracking GitLab - Time Tracking
ID mfchgpfejndkfdjkcjgmkkgiklobhibp
Oficjalny URL https://chromewebstore.google.com/detail/gitlab-time-tracking/mfchgpfejndkfdjkcjgmkkgiklobhibp
Opis Control the time tracking in the GitLab with this extension.
Rozmiar pliku 90 KB
Liczba instalacji 15
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2019-06-11
Data Publikacji 2019-06-11
Deweloper lucas.monteiro
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitLab - Time Tracking",
    "description": "Control the time tracking in the GitLab with this extension.",
    "version": "1.2",
    "author": "Lucas Monteiro",
    "options_page": "options\/index.html",
    "browser_action": {
        "default_icon": "assets\/icon.png"
    },
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/gitlab.com\/*\/issues\/*"
            ],
            "js": [
                "scripts\/moment.min.js",
                "scripts\/jquery-3.2.1.min.js",
                "scripts\/time.js"
            ]
        }
    ]
}