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"
            ]
        }
    ]
}