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
公式URL 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
Eメール [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"
            ]
        }
    ]
}