Tree Explorer for Github

Show the file tree for PR's and commits

Tree Explorer for Githubคืออะไร?

Tree Explorer for Github เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Fabio Picheli และคุณลักษณะหลักของมันคือ "Show the file tree for PR's and commits"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tree Explorer for Github

ดาวน์โหลดไฟล์ส่วนขยาย Tree Explorer for Github ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Improve GitHub tree explorer adding a file tree on PR's and commits


Contribute: https://github.com/picheli20/github-code-tree                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Tree Explorer for Github Tree Explorer for Github
ID caffoilocbbhnkdlpdcfanpbeholjdii
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tree-explorer-for-github/caffoilocbbhnkdlpdcfanpbeholjdii
คำอธิบาย Show the file tree for PR's and commits
ขนาดไฟล์ 43.13 KB
จำนวนการติดตั้ง 552
เวอร์ชันปัจจุบัน 1.4.1
อัปเดตครั้งล่าสุด 2020-12-15
วันที่เผยแพร่ 2019-04-02
คะแนน 4.91/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา Fabio Picheli
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tree Explorer for Github",
    "version": "1.4.1",
    "description": "Show the file tree for PR's and commits",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/github.com\/*"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "app\/popup\/index.html"
    },
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "lib\/jquery-1.11.1.min.js",
                "app\/background\/icons.js",
                "app\/background\/style.js",
                "app\/background\/index.js"
            ]
        }
    ]
}