Tree Explorer for Github

Show the file tree for PR's and commits

Cos'è Tree Explorer for Github?

Tree Explorer for Github è un'estensione di Chrome sviluppata da Fabio Picheli, e la sua funzione principale è "Show the file tree for PR's and commits".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Tree Explorer for Github

Scarica i file di estensione Tree Explorer for Github 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

                        Improve GitHub tree explorer adding a file tree on PR's and commits


Contribute: https://github.com/picheli20/github-code-tree                    

Informazioni di Base sull'Estensione

Nome Tree Explorer for Github Tree Explorer for Github
ID caffoilocbbhnkdlpdcfanpbeholjdii
URL Ufficiale https://chromewebstore.google.com/detail/tree-explorer-for-github/caffoilocbbhnkdlpdcfanpbeholjdii
Descrizione Show the file tree for PR's and commits
Dimensione del File 43.13 KB
Conteggio Installazioni 552
Versione Corrente 1.4.1
Ultimo Aggiornamento 2020-12-15
Data di Pubblicazione 2019-04-02
Valutazione 4.91/5 Totale 11 Valutazioni
Sviluppatore Fabio Picheli
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tree Explorer for Github",
    "version": "1.4.1",
    "description": "Show the file tree for PR's and commits",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/github.com\/*"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "app\/popup\/index.html"
    },
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "lib\/jquery-1.11.1.min.js",
                "app\/background\/icons.js",
                "app\/background\/style.js",
                "app\/background\/index.js"
            ]
        }
    ]
}