Tree Explorer for Github

Show the file tree for PR's and commits

什么是Tree Explorer for Github?

Tree Explorer for Github是由Fabio Picheli开发的Chrome扩展程序,该扩展的主要功能是“Show the file tree for PR's and commits”。

扩展截图

screenshot
screenshot
screenshot

下载Tree Explorer for Github扩展crx文件

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