Gitlab Macros

Gitlab MRs made easier

什么是Gitlab Macros?

Gitlab Macros是由devxmofficial开发的Chrome扩展程序,该扩展的主要功能是“Gitlab MRs made easier”。

扩展截图

screenshot

下载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                    

扩展基本信息

名称 Gitlab Macros Gitlab Macros
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
电子邮箱 [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"
    ]
}