Gitlab Macros
Gitlab MRs made easier
Gitlab Macrosとは何ですか?
Gitlab Macrosはdevxmofficialによって開発されたChromeの拡張機能で、その主な機能は「Gitlab MRs made easier」です。
拡張機能のスクリーンショット
Gitlab Macros拡張機能のCRXファイルをダウンロード
Gitlab Macros拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Manage merge request settings efficiently using macros. A Macro is a pattern of settings.
https://youtu.be/AH0qrQPVV6w
Gitlab Macro Extension - Auto Applying a Macro while creating an MR
https://youtu.be/d5iqX3Mf_VU
Gitlab Macro Extension - Creating a Macro and Auto Applying on Approve 拡張機能の基本情報
| 名前 | |
| ID | goghimbmkoilbmomgaflelnikefdondh |
| 公式URL | https://chromewebstore.google.com/detail/gitlab-macros/goghimbmkoilbmomgaflelnikefdondh |
| 説明 | Gitlab MRs made easier |
| ファイルサイズ | 273 KB |
| インストール数 | 188 |
| 現在のバージョン | 1.0.2 |
| 最終更新日 | 2023-07-04 |
| 公開日 | 2021-08-25 |
| 評価 | 5.00/5 合計 3 レビュー |
| 開発者 | devxmofficial |
| Eメール | [email protected] |
| 支払い方法 | free |
| プライバシーポリシーページのURL | https://www.sprinklr.com/privacy |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Gitlab Macros",
"description": "Gitlab MRs made easier",
"version": "1.0.2",
"manifest_version": 3,
"content_scripts": [
{
"matches": [
"https:\/\/*\/*\/-\/merge_requests*"
],
"run_at": "document_end",
"js": [
".\/static\/js\/content.js"
],
"css": [
"content.css"
]
}
],
"action": {
"default_popup": "index.html"
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"scripting",
"storage",
"activeTab",
"webNavigation",
"browsingData",
"declarativeContent"
]
} | |