Gitlab commit creator

Automatically fills commit message and description when then are empty

Co to jest Gitlab commit creator?

Gitlab commit creator to rozszerzenie Chrome opracowane przez akbarova.armia, a jego główną funkcją jest „Automatically fills commit message and description when then are empty”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Gitlab commit creator

Pobierz pliki rozszerzeń Gitlab commit creator 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

                        When creating a new merge request on gitlab it does not contain the title and the description of your commit message. In case you are used to rebase to only one commit, this extension will autofill title and description according to the content of your commit.                    

Podstawowe informacje o rozszerzeniu

Nazwa Gitlab commit creator Gitlab commit creator
ID cmggalcfgfeanaaanjdfpekjnnhcgbbi
Oficjalny URL https://chromewebstore.google.com/detail/gitlab-commit-creator/cmggalcfgfeanaaanjdfpekjnnhcgbbi
Opis Automatically fills commit message and description when then are empty
Rozmiar pliku 16.49 KB
Liczba instalacji 15
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2014-08-10
Data Publikacji 2014-08-10
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper akbarova.armia
Typ Płatności free
Strona Rozszerzenia https://github.com/MaximeD/gitlab_commit_creator
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gitlab commit creator",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Automatically fills commit message and description when then are empty",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "*:\/\/*\/*"
    ]
}