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文件

下载Gitlab enhancer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
}