GitLab Commit File Tree

Displays a file tree on GitLab merge request and commit pages.

GitLab Commit File Treeคืออะไร?

GitLab Commit File Tree เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mordred และคุณลักษณะหลักของมันคือ "Displays a file tree on GitLab merge request and commit pages."

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

screenshot

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

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

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

                        Displays a collapsible file tree on all Merge Requests and Commit diffs. Should work on gitlab.com and private gitlab installations.

Shows, new and deleted files as well as marks files which have comments.

Based on the work of Jimmy Anderson and Tomáš Bončo.

v2.0.0 - initial release for all gitlab repos
v2.1.0 - added scroll to file, and automatic expansion of collapsed files                    

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

ชื่อ GitLab Commit File Tree GitLab Commit File Tree
ID dgbnbphgodpcepmhcjmmmodcmkmkfibg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gitlab-commit-file-tree/dgbnbphgodpcepmhcjmmmodcmkmkfibg
คำอธิบาย Displays a file tree on GitLab merge request and commit pages.
ขนาดไฟล์ 17.96 KB
จำนวนการติดตั้ง 64
เวอร์ชันปัจจุบัน 2.1.0
อัปเดตครั้งล่าสุด 2018-10-29
วันที่เผยแพร่ 2018-10-29
คะแนน 3.25/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Mordred
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "background": {
        "persistent": false,
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "css\/file-tree.css"
            ],
            "js": [
                "js\/file-tree.js"
            ],
            "matches": [
                "https:\/\/*\/*merge_requests\/*",
                "https:\/\/*\/*commit*"
            ],
            "run_at": "document_idle"
        }
    ],
    "description": "Displays a file tree on GitLab merge request and commit pages.",
    "icons": {
        "128": "icons\/icon128.png"
    },
    "page_action": {
        "default_icon": {
            "128": "icons\/icon128.png",
            "48": "icons\/icon48.png",
            "38": "icons\/icon38.png",
            "19": "icons\/icon19.png",
            "16": "icons\/icon16.png"
        },
        "default_name": "GitLab Commit File Tree",
        "default_title": "GitLab Commit File Tree"
    },
    "manifest_version": 2,
    "name": "GitLab Commit File Tree",
    "permissions": [
        "https:\/\/*\/",
        "http:\/\/*\/",
        "declarativeContent"
    ],
    "short_name": "GitLab Commit File Tree",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.1.0"
}