Gitlab commit creator

Automatically fills commit message and description when then are empty

Что такое Gitlab commit creator?

Gitlab commit creator - это расширение Chrome, разработанное akbarova.armia, и его основная функция - "Automatically fills commit message and description when then are empty".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Gitlab commit creator

Скачайте файлы расширений 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": [
        "*:\/\/*\/*"
    ]
}