Tree Explorer for Github

Show the file tree for PR's and commits

Qu'est-ce que Tree Explorer for Github ?

Tree Explorer for Github est une extension Chrome développée par Fabio Picheli, et sa fonction principale est "Show the file tree for PR's and commits".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Tree Explorer for Github

Téléchargez les fichiers d'extension Tree Explorer for Github au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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


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

Informations de Base sur l'Extension

Nom Tree Explorer for Github Tree Explorer for Github
ID caffoilocbbhnkdlpdcfanpbeholjdii
URL Officiel https://chromewebstore.google.com/detail/tree-explorer-for-github/caffoilocbbhnkdlpdcfanpbeholjdii
Description Show the file tree for PR's and commits
Taille du Fichier 43.13 KB
Nombre d'Installations 552
Version Actuelle 1.4.1
Dernière Mise à Jour 2020-12-15
Date de Publication 2019-04-02
Évaluation 4.91/5 Total 11 Évaluations
Développeur Fabio Picheli
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}