Gitlab commit creator
Automatically fills commit message and description when then are empty
Was ist Gitlab commit creator?
Gitlab commit creator ist eine Chrome-Erweiterung, die von akbarova.armia entwickelt wurde, und ihr Hauptmerkmal ist "Automatically fills commit message and description when then are empty".
Erweiterungsscreenshots
Gitlab commit creator-Erweiterungs-CRX-Datei herunterladen
Laden Sie Gitlab commit creator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Gitlab commit creator |
ID | cmggalcfgfeanaaanjdfpekjnnhcgbbi |
Offizielle URL | https://chromewebstore.google.com/detail/gitlab-commit-creator/cmggalcfgfeanaaanjdfpekjnnhcgbbi |
Beschreibung | Automatically fills commit message and description when then are empty |
Dateigröße | 16.49 KB |
Installationsanzahl | 15 |
Aktuelle Version | 1.1 |
Letztes Update | 2014-08-10 |
Veröffentlichungsdatum | 2014-08-10 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | akbarova.armia |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/MaximeD/gitlab_commit_creator |
Unterstützte Sprachen | 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": [ "*:\/\/*\/*" ] } |