CodeTree

Code tree for Github, GitHub Enterprise and Gitee

Apa itu CodeTree?

CodeTree adalah ekstensi Chrome yang dikembangkan oleh gabearwin, dan fitur utamanya adalah "Code tree for Github, GitHub Enterprise and Gitee".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi CodeTree

Unduh file ekstensi CodeTree dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        Based on Octotree development.

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

Currently supports Github, GitHub Enterprise and Gitee.                    

Informasi Dasar Ekstensi

Nama CodeTree CodeTree
ID keecdmdfhddgmiclpcmhgeamfaecamll
URL Resmi https://chromewebstore.google.com/detail/codetree/keecdmdfhddgmiclpcmhgeamfaecamll
Deskripsi Code tree for Github, GitHub Enterprise and Gitee
Ukuran File 423 KB
Jumlah Instalasi 711
Versi Saat Ini 1.5.0
Terakhir Diperbarui 2019-05-21
Tanggal Publikasi 2019-05-20
Penilaian 5.00/5 Total 1 Penilaian
Pengembang gabearwin
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}