Gitlab commit creator
Automatically fills commit message and description when then are empty
Wat is Gitlab commit creator?
Gitlab commit creator is een Chrome-extensie ontwikkeld door akbarova.armia, en de belangrijkste functie is "Automatically fills commit message and description when then are empty".
Extensie Screenshots
Download het CRX-bestand van de extensie Gitlab commit creator
Download Gitlab commit creator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Gitlab commit creator |
ID | cmggalcfgfeanaaanjdfpekjnnhcgbbi |
Officiële URL | https://chromewebstore.google.com/detail/gitlab-commit-creator/cmggalcfgfeanaaanjdfpekjnnhcgbbi |
Beschrijving | Automatically fills commit message and description when then are empty |
Bestandsgrootte | 16.49 KB |
Aantal Installaties | 15 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2014-08-10 |
Publicatiedatum | 2014-08-10 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | akbarova.armia |
Betalingswijze | free |
Extensiewebsite | https://github.com/MaximeD/gitlab_commit_creator |
Ondersteunde Talen | 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": [ "*:\/\/*\/*" ] } |