GitLab - Tree view for code

Provides folder structure view for code in GitLab.

Co to jest GitLab - Tree view for code?

GitLab - Tree view for code to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Provides folder structure view for code in GitLab.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia GitLab - Tree view for code

Pobierz pliki rozszerzeń GitLab - Tree view for code w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa GitLab - Tree view for code GitLab - Tree view for code
ID pijacafkghdlolapcjpmiodgbnpinicn
Oficjalny URL https://chromewebstore.google.com/detail/gitlab-tree-view-for-code/pijacafkghdlolapcjpmiodgbnpinicn
Opis Provides folder structure view for code in GitLab.
Rozmiar pliku 23.06 KB
Liczba instalacji 1,272
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2018-11-11
Data Publikacji 2018-11-11
Ocena 4.00/5 Łącznie 14 Oceny
Deweloper Unknown
Typ Płatności free
Strona Rozszerzenia https://github.com/tomasbonco/gitlabtree
Adres URL Strony Pomocy https://github.com/tomasbonco/gitlabtree
Obsługiwane Języki 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"
            ]
        }
    ]
}