GitLab Merge Requests lists enhancer

An extension that enhance all Merge Requests lists on any instance of Gitlab and GitLab.com.

GitLab Merge Requests lists enhancerคืออะไร?

GitLab Merge Requests lists enhancer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Maxime "Epoc" G. และคุณลักษณะหลักของมันคือ "An extension that enhance all Merge Requests lists on any instance of Gitlab and GitLab.com."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitLab Merge Requests lists enhancer

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

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

                        > Features

    - No configuration needed: install and it just works
    - Display source and target branches
        - Can be enabled/disabled in the extension preferences
        - Buttons allowing to easily copy these branches name (can be enabled/disabled in the extension preferences)
    - Button allowing to copy Merge Request information (useful when sharing the Merge Request on e.g instant messaging softwares)
        - Can be enabled/disabled in the extension preferences
        - Text format is customizable (with support of placeholders)
    - Direct Jira ticket link
        - Can be enabled/disabled in the extension preferences
        - Ticket ID is automatically detected in source branch name or Merge Request title
        - Base Jira URL is configured in extension preferences
        - The ticket ID or an icon can be displayed as the link label (configured in extension preferences)
    - WIP toggle button (can be enabled/disabled in the extension preferences)
    - Show an indicator when there's unresolved discussions left on Merge Requests
        - Can be enabled/disabled in the extension preferences
        - Note the "All discussions must be resolved" option must be enabled for this feature to be working as expected. This option is enabled per project and is located in Settings > General > Merge Requests > Merge checks
    - Compatible with all GitLab editions (GitLab CE, GitLab EE, GitLab.com) (look at the prerequisites, though)

> Prerequisites

GitLab 9.0 or above or GitLab.com (this addon requires GitLab API v4).

> Credits

Logo: GitLab and Octicons (MIT License)

> Changelog

https://github.com/EpocDotFr/gitlab-merge-requests-lists-enhancer/releases

> License

DBAD 1.1                    

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

ชื่อ GitLab Merge Requests lists enhancer GitLab Merge Requests lists enhancer
ID emiefdjcbfjkaofipmdcflcddcchmdkf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gitlab-merge-requests-lis/emiefdjcbfjkaofipmdcflcddcchmdkf
คำอธิบาย An extension that enhance all Merge Requests lists on any instance of Gitlab and GitLab.com.
ขนาดไฟล์ 32.32 KB
จำนวนการติดตั้ง 177
เวอร์ชันปัจจุบัน 1.6.0
อัปเดตครั้งล่าสุด 2021-01-24
วันที่เผยแพร่ 2020-05-13
คะแนน 4.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Maxime "Epoc" G.
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/EpocDotFr/gitlab-merge-requests-lists-enhancer
URL หน้าช่วยเหลือ https://github.com/EpocDotFr/gitlab-merge-requests-lists-enhancer/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitLab Merge Requests lists enhancer",
    "version": "1.6.0",
    "description": "An extension that enhance all Merge Requests lists on any instance of Gitlab and GitLab.com.",
    "homepage_url": "https:\/\/github.com\/EpocDotFr\/gitlab-merge-requests-lists-enhancer",
    "author": "Maxime 'Epoc' G.",
    "icons": {
        "16": "images\/logo_16.png",
        "48": "images\/logo_48.png",
        "96": "images\/logo_96.png",
        "128": "images\/logo_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*\/*\/-\/merge_requests",
                "*:\/\/*\/*\/*\/-\/merge_requests?*"
            ],
            "js": [
                "js\/preferences.js",
                "js\/content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "html\/options.html",
        "open_in_tab": false,
        "chrome_style": true
    },
    "permissions": [
        "*:\/\/*\/*\/*\/-\/merge_requests",
        "*:\/\/*\/*\/*\/-\/merge_requests?*",
        "storage"
    ],
    "minimum_chrome_version": "66"
}