CodeTree

Code tree for Github, GitHub Enterprise and Gitee

什麼是CodeTree?

CodeTree是由gabearwin開發的Chrome擴展程式,該擴展的主要功能是“Code tree for Github, GitHub Enterprise and Gitee”。

擴展截圖

screenshot

下載CodeTree擴展crx文件

下載CodeTree擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Based on Octotree development.

All files in the current git repository are displayed in a file tree.

Currently supports Github, GitHub Enterprise and Gitee.                    

擴展基本資訊

名稱 CodeTree CodeTree
ID keecdmdfhddgmiclpcmhgeamfaecamll
官方網址 https://chromewebstore.google.com/detail/codetree/keecdmdfhddgmiclpcmhgeamfaecamll
簡介 Code tree for Github, GitHub Enterprise and Gitee
檔案大小 423 KB
安裝次數 711
目前版本 1.5.0
更新時間 2019-05-21
上架時間 2019-05-20
評分 5.00/5 共 1 次評分
開發者 gabearwin
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CodeTree",
    "version": "1.5.0",
    "description": "Code tree for Github, GitHub Enterprise and Gitee",
    "homepage_url": "http:\/\/home.ustc.edu.cn\/~sa517422\/",
    "author": "GABEARWIN",
    "manifest_version": 2,
    "minimum_chrome_version": "60",
    "icons": {
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "https:\/\/api.github.com\/*",
        "https:\/\/assets.gitee.com\/*",
        "storage"
    ],
    "optional_permissions": [
        ""
    ],
    "web_accessible_resources": [
        "*.woff2",
        "*.png",
        "*.gif"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gitee.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ]
}