GitLab Approvals

Displays the approvals for a given MR within the MR list.

GitLab Approvalsคืออะไร?

GitLab Approvals เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Conner Anderson และคุณลักษณะหลักของมันคือ "Displays the approvals for a given MR within the MR list."

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

screenshot

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

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

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

                        After switching over to GitLab, I noticed that when relying on an approval system for Merge Requests, it was hard to know upfront which ones you've already approved. This extension was made to make it clear to know which Merge Requests you've gone through without having to click into each and every one.

Changelog:
Jan. 14th, 2020 (v1.3.4):
* Added support for Group Views with subgroup projects
  * Authors and approvals will now properly be fetched for group views. Previously, subgroup projects were not propogating correctly and resulted in undefined project IDs.

Jan. 21st, 2019 (v1.3.3):
* Fix for very large group views
  * There was an issue with the selector on merge request `li` items in the group view which caused massive mix ups of where to inject approvals and move author views around.

Jan. 20th, 2019 (v1.3.2):
* Added Group support
  * The plugin now works for all composite group views.
  * Uses a single API call to get project ids (only if it hasn't seen one before!), and then similar functionality as a project view.
* Added option to clear all cache and settings

Jan. 19th, 2019 (v1.3.1):
* Fixes a caching bug which involved getting the wrong time stamp off the page
* Fixes the generalized permissions issue
  * Allows me to publish faster
  * Potentially reduces the number of whitelisted websites that will work with the extension. Going to keep investigating.                    

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

ชื่อ GitLab Approvals GitLab Approvals
ID pkkmcaoiinhniniafikpmhajlddofikj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gitlab-approvals/pkkmcaoiinhniniafikpmhajlddofikj
คำอธิบาย Displays the approvals for a given MR within the MR list.
ขนาดไฟล์ 340 KB
จำนวนการติดตั้ง 47
เวอร์ชันปัจจุบัน 1.3.4
อัปเดตครั้งล่าสุด 2020-01-14
วันที่เผยแพร่ 2020-01-14
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Conner Anderson
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/cnnranderson/gitlab-approval-chrome-ext
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitLab Approvals",
    "version": "1.3.4",
    "description": "Displays the approvals for a given MR within the MR list.",
    "manifest_version": 2,
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.gitlab.com\/*\/merge_requests*",
                "https:\/\/*.nordstrom.com\/*\/merge_requests*"
            ],
            "js": [
                "thirdparty\/jquery.min.js",
                "js\/gitlab_api.js",
                "js\/show_approvals.js",
                "js\/cache_util.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "images\/gitlab.png",
        "32": "images\/gitlab.png",
        "48": "images\/gitlab.png",
        "128": "images\/gitlab.png"
    },
    "options_page": "html\/options.html"
}