gitlab tree

Chrome extension to display Gitlab code in tree format

Cos'è gitlab tree?

gitlab tree è un'estensione di Chrome sviluppata da Frank Fan, e la sua funzione principale è "Chrome extension to display Gitlab code in tree format".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione gitlab tree

Scarica i file di estensione gitlab tree in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        * 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                    

Informazioni di Base sull'Estensione

Nome gitlab tree gitlab tree
ID dllpphhnoanpcnlnipopibigdoeignbb
URL Ufficiale https://chrome.google.com/webstore/detail/gitlab-tree/dllpphhnoanpcnlnipopibigdoeignbb
Descrizione Chrome extension to display Gitlab code in tree format
Dimensione del File 197 KB
Conteggio Installazioni 4,983
Versione Corrente 2.0.1
Ultimo Aggiornamento 2018-03-22
Data di Pubblicazione 2018-03-22
Valutazione 2.38/5 Totale 29 Valutazioni
Sviluppatore Frank Fan
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/FrankFan/gitlab-tree
URL della Pagina di Aiuto https://github.com/FrankFan/gitlab-tree
Lingue Supportate 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"
        }
    ]
}