gitlab tree

Chrome extension to display Gitlab code in tree format

Что такое gitlab tree?

gitlab tree - это расширение Chrome, разработанное Frank Fan, и его основная функция - "Chrome extension to display Gitlab code in tree format".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения gitlab tree

Скачайте файлы расширений 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"
        }
    ]
}