CodeTree

Code tree for Github, GitHub Enterprise and Gitee

What is CodeTree?

CodeTree is a Chrome extension developed by gabearwin, and its main feature is "Code tree for Github, GitHub Enterprise and Gitee".

Extension Screenshots

screenshot

Download CodeTree Extension CRX File

Download CodeTree extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Based on Octotree development.

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

Currently supports Github, GitHub Enterprise and Gitee.                    

Extension Basic Information

Name CodeTree CodeTree
ID keecdmdfhddgmiclpcmhgeamfaecamll
Official URL https://chromewebstore.google.com/detail/codetree/keecdmdfhddgmiclpcmhgeamfaecamll
Description Code tree for Github, GitHub Enterprise and Gitee
File Size 423 KB
Installation Count 711
Current Version 1.5.0
Last Updated 2019-05-21
Publish Date 2019-05-20
Rating 5.00/5 Total 1 Ratings
Developer gabearwin
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}