CodeTree

Code tree for Github, GitHub Enterprise and Gitee

CodeTreeคืออะไร?

CodeTree เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gabearwin และคุณลักษณะหลักของมันคือ "Code tree for Github, GitHub Enterprise and Gitee"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CodeTree

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
            ]
        }
    ]
}