Gitlab commit creator

Automatically fills commit message and description when then are empty

What is Gitlab commit creator?

Gitlab commit creator is a Chrome extension developed by akbarova.armia, and its main feature is "Automatically fills commit message and description when then are empty".

Extension Screenshots

screenshot

Download Gitlab commit creator Extension CRX File

Download Gitlab commit creator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Gitlab commit creator Gitlab commit creator
ID cmggalcfgfeanaaanjdfpekjnnhcgbbi
Official URL https://chromewebstore.google.com/detail/gitlab-commit-creator/cmggalcfgfeanaaanjdfpekjnnhcgbbi
Description Automatically fills commit message and description when then are empty
File Size 16.49 KB
Installation Count 15
Current Version 1.1
Last Updated 2014-08-10
Publish Date 2014-08-10
Rating 5.00/5 Total 1 Ratings
Developer akbarova.armia
Payment Type free
Extension Website https://github.com/MaximeD/gitlab_commit_creator
Supported Languages 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": [
        "*:\/\/*\/*"
    ]
}