Tree Explorer for Github

Show the file tree for PR's and commits

Co to jest Tree Explorer for Github?

Tree Explorer for Github to rozszerzenie Chrome opracowane przez Fabio Picheli, a jego główną funkcją jest „Show the file tree for PR's and commits”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Tree Explorer for Github

Pobierz pliki rozszerzeń Tree Explorer for Github w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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


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

Podstawowe informacje o rozszerzeniu

Nazwa Tree Explorer for Github Tree Explorer for Github
ID caffoilocbbhnkdlpdcfanpbeholjdii
Oficjalny URL https://chromewebstore.google.com/detail/tree-explorer-for-github/caffoilocbbhnkdlpdcfanpbeholjdii
Opis Show the file tree for PR's and commits
Rozmiar pliku 43.13 KB
Liczba instalacji 552
Aktualna Wersja 1.4.1
Ostatnia Aktualizacja 2020-12-15
Data Publikacji 2019-04-02
Ocena 4.91/5 Łącznie 11 Oceny
Deweloper Fabio Picheli
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}