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