gitlab tree

Chrome extension to display Gitlab code in tree format

What is gitlab tree?

gitlab tree is a Chrome extension developed by Frank Fan, and its main feature is "Chrome extension to display Gitlab code in tree format".

Extension Screenshots

screenshot
screenshot

Download gitlab tree Extension CRX File

Download gitlab tree extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        * 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                    

Extension Basic Information

Name gitlab tree gitlab tree
ID dllpphhnoanpcnlnipopibigdoeignbb
Official URL https://chrome.google.com/webstore/detail/gitlab-tree/dllpphhnoanpcnlnipopibigdoeignbb
Description Chrome extension to display Gitlab code in tree format
File Size 197 KB
Installation Count 4,983
Current Version 2.0.1
Last Updated 2018-03-22
Publish Date 2018-03-22
Rating 2.38/5 Total 29 Ratings
Developer Frank Fan
Payment Type free
Extension Website https://github.com/FrankFan/gitlab-tree
Help Page URL https://github.com/FrankFan/gitlab-tree
Supported Languages 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"
        }
    ]
}