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
官方網址 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"
            ]
        }
    ]
}