Gitlab commit creator
Automatically fills commit message and description when then are empty
Cos'è Gitlab commit creator?
Gitlab commit creator è un'estensione di Chrome sviluppata da akbarova.armia, e la sua funzione principale è "Automatically fills commit message and description when then are empty".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Gitlab commit creator
Scarica i file di estensione Gitlab commit creator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Gitlab commit creator |
ID | cmggalcfgfeanaaanjdfpekjnnhcgbbi |
URL Ufficiale | https://chromewebstore.google.com/detail/gitlab-commit-creator/cmggalcfgfeanaaanjdfpekjnnhcgbbi |
Descrizione | Automatically fills commit message and description when then are empty |
Dimensione del File | 16.49 KB |
Conteggio Installazioni | 15 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2014-08-10 |
Data di Pubblicazione | 2014-08-10 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | akbarova.armia |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/MaximeD/gitlab_commit_creator |
Lingue Supportate | 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": [ "*:\/\/*\/*" ] } |