Gitlab Macros

Gitlab MRs made easier

What is Gitlab Macros?

Gitlab Macros is a Chrome extension developed by devxmofficial, and its main feature is "Gitlab MRs made easier".

Extension Screenshots

screenshot

Download Gitlab Macros Extension CRX File

Download Gitlab Macros extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Gitlab Macros Gitlab Macros
ID goghimbmkoilbmomgaflelnikefdondh
Official URL https://chromewebstore.google.com/detail/gitlab-macros/goghimbmkoilbmomgaflelnikefdondh
Description Gitlab MRs made easier
File Size 273 KB
Installation Count 188
Current Version 1.0.2
Last Updated 2023-07-04
Publish Date 2021-08-25
Rating 5.00/5 Total 3 Ratings
Developer devxmofficial
Email [email protected]
Payment Type free
Privacy Policy Page URL https://www.sprinklr.com/privacy
Supported Languages 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"
    ]
}