Gitlab commit creator

Automatically fills commit message and description when then are empty

Hvad er Gitlab commit creator?

Gitlab commit creator er en Chrome-udvidelse udviklet af akbarova.armia, og dens hovedfunktion er "Automatically fills commit message and description when then are empty".

Udvidelsesskærmbilleder

screenshot

Download Gitlab commit creator-udvidelses-CRX-fil

Download Gitlab commit creator-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Gitlab commit creator Gitlab commit creator
ID cmggalcfgfeanaaanjdfpekjnnhcgbbi
Officiel URL https://chromewebstore.google.com/detail/gitlab-commit-creator/cmggalcfgfeanaaanjdfpekjnnhcgbbi
Beskrivelse Automatically fills commit message and description when then are empty
Filstørrelse 16.49 KB
Antal Installationer 15
Nuværende Version 1.1
Senest Opdateret 2014-08-10
Udgivelsesdato 2014-08-10
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler akbarova.armia
Betalingsmetode free
Udvidelseswebsted https://github.com/MaximeD/gitlab_commit_creator
Understøttede Sprog 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": [
        "*:\/\/*\/*"
    ]
}