GitLab - Tree view for code

Provides folder structure view for code in GitLab.

Co je GitLab - Tree view for code?

GitLab - Tree view for code je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „Provides folder structure view for code in GitLab.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření GitLab - Tree view for code

Stáhněte si soubory rozšíření GitLab - Tree view for code ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název GitLab - Tree view for code GitLab - Tree view for code
ID pijacafkghdlolapcjpmiodgbnpinicn
Oficiální URL https://chromewebstore.google.com/detail/gitlab-tree-view-for-code/pijacafkghdlolapcjpmiodgbnpinicn
Popis Provides folder structure view for code in GitLab.
Velikost souboru 23.06 KB
Počet instalací 1,272
Aktuální Verze 1.0.1
Poslední Aktualizace 2018-11-11
Datum Vydání 2018-11-11
Hodnocení 4.00/5 Celkem 14 Hodnocení
Vývojář Unknown
Typ Platby free
Webové stránky Rozšíření https://github.com/tomasbonco/gitlabtree
URL Stránky Nápovědy https://github.com/tomasbonco/gitlabtree
Podporované Jazyky 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"
            ]
        }
    ]
}