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

下載gitlab tree擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        * 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
官方網址 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"
        }
    ]
}