Gitlab Macros

Gitlab MRs made easier

Gitlab Macrosคืออะไร?

Gitlab Macros เป็นส่วนขยายของ Chrome ที่พัฒนาโดย devxmofficial และคุณลักษณะหลักของมันคือ "Gitlab MRs made easier"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gitlab Macros

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}