Tree Explorer for Github

Show the file tree for PR's and commits

Τι είναι το Tree Explorer for Github;

Το Tree Explorer for Github είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Fabio Picheli, και η κύρια λειτουργία του είναι "Show the file tree for PR's and commits".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Tree Explorer for Github

Λήψη αρχείων επέκτασης Tree Explorer for Github σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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


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

Βασικές Πληροφορίες Επέκτασης

Όνομα Tree Explorer for Github Tree Explorer for Github
ID caffoilocbbhnkdlpdcfanpbeholjdii
Επίσημο URL https://chromewebstore.google.com/detail/tree-explorer-for-github/caffoilocbbhnkdlpdcfanpbeholjdii
Περιγραφή Show the file tree for PR's and commits
Μέγεθος Αρχείου 43.13 KB
Αριθμός Εγκαταστάσεων 552
Τρέχουσα Έκδοση 1.4.1
Τελευταία Ενημέρωση 2020-12-15
Ημερομηνία Δημοσίευσης 2019-04-02
Αξιολόγηση 4.91/5 Συνολικά 11 Αξιολογήσεις
Προγραμματιστής Fabio Picheli
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}