gitlab tree

Chrome extension to display Gitlab code in tree format

gitlab tree란 무엇입니까?

gitlab tree은(는) Frank Fan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension to display Gitlab code in tree format"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

gitlab tree 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        * this is the first one on chrome web store, always free and continually optimization.

* support all the enterprise intranet gitlab service
* Easy-to-navigate code tree like web IDEs, simple and non-invasive
* UI looks like Gitlab default UI
* hotkey support( hit [ to toggle gitlab-tree sidebar )
* support gitlab 8.x and 9.x version 
* no page refresh                    

확장 프로그램 기본 정보

이름 gitlab tree gitlab tree
ID dllpphhnoanpcnlnipopibigdoeignbb
공식 URL https://chrome.google.com/webstore/detail/gitlab-tree/dllpphhnoanpcnlnipopibigdoeignbb
설명 Chrome extension to display Gitlab code in tree format
파일 크기 197 KB
설치 횟수 4,983
현재 버전 2.0.1
최근 업데이트 2018-03-22
출시 날짜 2018-03-22
평점 2.38/5 총 29 개의 평점
개발자 Frank Fan
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/FrankFan/gitlab-tree
도움말 페이지 URL https://github.com/FrankFan/gitlab-tree
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "gitlab tree",
    "version": "2.0.1",
    "manifest_version": 2,
    "author": "Frank Fan",
    "description": "Chrome extension to display Gitlab code in tree format",
    "homepage_url": "https:\/\/github.com\/FrankFan\/gitlab-tree",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "imgs\/gitlab.png",
        "48": "imgs\/gitlab.png",
        "128": "imgs\/gitlab.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "libs\/jquery\/jquery.js",
                "libs\/jstree\/jstree.js",
                "libs\/pjax\/jquery.pjax.js",
                "libs\/highlight\/highlight.min.js",
                "libs\/nprogress\/nprogress.js",
                "libs\/base64-js\/base64js.min.js",
                "gitlabtree.js"
            ],
            "css": [
                "main.css",
                "libs\/nprogress\/nprogress.css",
                "libs\/jstree\/jstree.css"
            ],
            "run_at": "document_start"
        }
    ]
}