CodeTree

Code tree for Github, GitHub Enterprise and Gitee

Co je CodeTree?

CodeTree je rozšíření Chrome vyvinuté gabearwin, a jeho hlavní funkcí je „Code tree for Github, GitHub Enterprise and Gitee“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření CodeTree

Stáhněte si soubory rozšíření CodeTree ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Based on Octotree development.

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

Currently supports Github, GitHub Enterprise and Gitee.                    

Základní Informace o Rozšíření

Název CodeTree CodeTree
ID keecdmdfhddgmiclpcmhgeamfaecamll
Oficiální URL https://chromewebstore.google.com/detail/codetree/keecdmdfhddgmiclpcmhgeamfaecamll
Popis Code tree for Github, GitHub Enterprise and Gitee
Velikost souboru 423 KB
Počet instalací 711
Aktuální Verze 1.5.0
Poslední Aktualizace 2019-05-21
Datum Vydání 2019-05-20
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář gabearwin
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}