GitLab - Tree view for code

Provides folder structure view for code in GitLab.

Что такое GitLab - Tree view for code?

GitLab - Tree view for code - это расширение Chrome, разработанное Unknown, и его основная функция - "Provides folder structure view for code in GitLab.".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения GitLab - Tree view for code

Скачайте файлы расширений GitLab - Tree view for code в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension provides tree view for code in GitLab. In time of writing description, this is the only extension that supports custom-hosted GitLab instances. The must-have plugin for code reviews! Enjoy :) Note: You can see it only on Commits and Merge Requests. It does NOT work like Octotree.                    

Основная информация о расширении

Название GitLab - Tree view for code GitLab - Tree view for code
ID pijacafkghdlolapcjpmiodgbnpinicn
Официальный URL https://chromewebstore.google.com/detail/gitlab-tree-view-for-code/pijacafkghdlolapcjpmiodgbnpinicn
Описание Provides folder structure view for code in GitLab.
Размер файла 23.06 KB
Количество установок 1,272
Текущая Версия 1.0.1
Последнее Обновление 2018-11-11
Дата публикации 2018-11-11
Рейтинг 4.00/5 Всего 14 оценок
Разработчик Unknown
Тип оплаты free
Официальный сайт расширения https://github.com/tomasbonco/gitlabtree
URL страницы помощи https://github.com/tomasbonco/gitlabtree
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitLab - Tree view for code",
    "homepage_url": "https:\/\/github.com\/tomasbonco\/gitlabtree",
    "author": "Tom\u00e1\u0161 Bon\u010do",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "Provides folder structure view for code in GitLab.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "page_action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dist\/index.js"
            ],
            "css": [
                "dist\/style.css"
            ]
        }
    ]
}