GitLab Commit File Tree

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

GitLab Commit File Tree란 무엇입니까?

GitLab Commit File Tree은(는) Mordred에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays a file tree on GitLab merge request and commit pages."입니다.

확장 프로그램 스크린샷

screenshot

GitLab Commit File Tree 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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"
}