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”。
擴展截圖
下載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 |
ID | cmggalcfgfeanaaanjdfpekjnnhcgbbi |
官方網址 | 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": [ "*:\/\/*\/*" ] } |