Gitlab Buddy

Simple web extension to help manage Gitlab merge requests.

Gitlab Buddyคืออะไร?

Gitlab Buddy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย omarsarhan และคุณลักษณะหลักของมันคือ "Simple web extension to help manage Gitlab merge requests."

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

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Gitlab Buddy ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        COMPLETELY FREE FOREVER! 

The merge request dashboard Gitlab is missing! Never miss an assigned merge request ever again! This finds all assigned MRs, and displays in a pop-out chrome extension, without having to manually subscribe to each repository. Other gitlab extensions grab merge requests assigned to you.  This extension also pulls in group approval merge requests!

Features include:
- Cant create a personal access token? No problem! This extension can use your session token from the browser!  As long as you are signed into your gitlab account, this extension will work!
- Grabs merged requests under group approvals, assignee, reviewer and created
- Pending/Approved/Created/Merged MRs 
- Direct link to merge request/Repo/Author and Pipelines
- List of mentions on merge requests
- See immediately if approved and by who
- CI/CD pipeline status w/ direct link to pipeline
- Quick view of MR conversations and comments
- Merge conflicts status
- Unresolved threads status
- Ability to change to see group assigned or only explicitly assigned merge requests (in case a manager only needs to see explicitly assigned merge requests)
- Hide merge requests from the list                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Gitlab Buddy Gitlab Buddy
ID lkepfjciookjhedanolcnnclgokpkedc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gitlab-buddy/lkepfjciookjhedanolcnnclgokpkedc
คำอธิบาย Simple web extension to help manage Gitlab merge requests.
ขนาดไฟล์ 459 KB
จำนวนการติดตั้ง 385
เวอร์ชันปัจจุบัน 3.26
อัปเดตครั้งล่าสุด 2022-10-04
วันที่เผยแพร่ 2020-08-24
คะแนน 4.50/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา omarsarhan
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://gitlab.com/osarhan/gitlab-buddy
URL หน้าช่วยเหลือ https://gitlab.com/osarhan/gitlab-buddy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Omar Sarhan",
    "commands": {
        "_execute_browser_action": {
            "description": "Activate the extension"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": ".\/popup.html",
        "default_icon": {
            "16": "assets\/icons\/icon_16.png",
            "32": "assets\/icons\/icon_32.png",
            "64": "assets\/icons\/icon_64.png",
            "128": "assets\/icons\/icon_128.png"
        }
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "description": "Simple web extension to help manage Gitlab merge requests.",
    "icons": {
        "16": "assets\/icons\/icon_16.png",
        "32": "assets\/icons\/icon_32.png",
        "64": "assets\/icons\/icon_64.png",
        "128": "assets\/icons\/icon_128.png"
    },
    "manifest_version": 2,
    "name": "Gitlab Buddy",
    "permissions": [
        "alarms"
    ],
    "optional_permissions": [
        "cookies",
        "*:\/\/*\/"
    ],
    "version": "3.26"
}