Gitlab Macros

Gitlab MRs made easier

Co to jest Gitlab Macros?

Gitlab Macros to rozszerzenie Chrome opracowane przez devxmofficial, a jego główną funkcją jest „Gitlab MRs made easier”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Gitlab Macros

Pobierz pliki rozszerzeń Gitlab Macros w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Gitlab Macros Gitlab Macros
ID goghimbmkoilbmomgaflelnikefdondh
Oficjalny URL https://chromewebstore.google.com/detail/gitlab-macros/goghimbmkoilbmomgaflelnikefdondh
Opis Gitlab MRs made easier
Rozmiar pliku 273 KB
Liczba instalacji 188
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2023-07-04
Data Publikacji 2021-08-25
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper devxmofficial
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://www.sprinklr.com/privacy
Obsługiwane Języki 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"
    ]
}