Gitlab enhancer

Gitlab extension to enhance the user experience on the merger request process

Gitlab enhancer란 무엇입니까?

Gitlab enhancer은(는) roumi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Gitlab extension to enhance the user experience on the merger request process"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Gitlab enhancer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Enhance your GitLab merge request management with our Chrome extension. It brings clarity to your tasks, highlighting unresolved discussions and providing a clear, color-coded status overview. 

The extension will modifies 3 things in the merges requests page:

1. In the page of merge request, you can toggle the thread not created from a code review

2. it display the number of discussions not resolve out of the total number

3. it display a color coded for the merges requests, here are the explanations:

if you are the the reviewer:
- action needed: you didn't upvote the MR AND (all of your discussions are resolved OR you didn't start a discussion OR one of your discussion is not resolved and the last message is not from you)
- wait: one of your discussions is not resolved and the last message is from you or one of the discussion is not from you and the last message is from you
- done: all of your discussions are resolved and you've upvoted

If your are the creator:
- action needed: you have the upvotes needed for your merge request OR there is discussions not resolved and the last message is not from you
- wait: all of the discussions are resolved OR in discussions not resolved the last message have to be yours
- done: none
- if you selected the option to not track merge request made by other it will be displayed with opacity                    

확장 프로그램 기본 정보

이름 Gitlab enhancer Gitlab enhancer
ID gefblbbchjoiikjegebbmilelbecgcaa
공식 URL https://chromewebstore.google.com/detail/gitlab-enhancer/gefblbbchjoiikjegebbmilelbecgcaa
설명 Gitlab extension to enhance the user experience on the merger request process
파일 크기 367 KB
설치 횟수 58
현재 버전 4
최근 업데이트 2024-02-16
출시 날짜 2020-06-12
평점 5.00/5 총 1 개의 평점
개발자 roumi
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gitlab enhancer",
    "version": "4",
    "description": "Gitlab extension to enhance the user experience on the merger request process",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "src\/popup\/index.html",
        "default_icon": "images\/image.png"
    },
    "icons": {
        "16": "images\/image.png",
        "128": "images\/image.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "src\/content\/content.css"
            ],
            "js": [
                "src\/content\/helper_api.js",
                "src\/content\/count_discussions.js",
                "src\/content\/conditional_display.js",
                "src\/content\/my_mr.js",
                "src\/content\/index.js",
                "src\/content\/toggle.js",
                "src\/content\/tracking.js"
            ]
        }
    ],
    "manifest_version": 3
}