Gitlab commit creator

Automatically fills commit message and description when then are empty

什么是Gitlab commit creator?

Gitlab commit creator是由akbarova.armia开发的Chrome扩展程序,该扩展的主要功能是“Automatically fills commit message and description when then are empty”。

扩展截图

screenshot

下载Gitlab commit creator扩展crx文件

下载Gitlab commit creator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Gitlab commit creator Gitlab commit creator
ID cmggalcfgfeanaaanjdfpekjnnhcgbbi
官方URL https://chromewebstore.google.com/detail/gitlab-commit-creator/cmggalcfgfeanaaanjdfpekjnnhcgbbi
简介 Automatically fills commit message and description when then are empty
文件大小 16.49 KB
安装次数 15
当前版本 1.1
更新时间 2014-08-10
上架时间 2014-08-10
评分 5.00/5 共1次评分
开发者 akbarova.armia
付费类型 free
扩展官网 https://github.com/MaximeD/gitlab_commit_creator
支持的语言 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": [
        "*:\/\/*\/*"
    ]
}