A-Tree - Github review helper

A-Tree - Github review helper (Code browsing & Pull requests reviewing)

A-Tree - Github review helperคืออะไร?

A-Tree - Github review helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย TimWei5566 และคุณลักษณะหลักของมันคือ "A-Tree - Github review helper (Code browsing & Pull requests reviewing)"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย A-Tree - Github review helper

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

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

                        🚀 Quick Features
- Tree view for both Github files and pull requests
- Some handy tools for code review (collapse/expand files, mark all files as viewed, etc.)
- Quick search files like VSCode does (command + i or ctrl + i, customizable)
- Switch commits via hotkeys
- Support SPA for Github Pages
- Support private and Enterprise repositories (https://github.com/shinenic/a-tree#fq)


🌲About
Open-source community project
https://github.com/shinenic/a-tree


📝 Permission requirements
  - contextMenus
    For Github enterprise users, we provide a simple way to enable our extension via right click.                    

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

ชื่อ A-Tree - Github review helper A-Tree - Github review helper
ID niogapfhnkbjmpnnobldcekclbgkbiah
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/a-tree-github-review-help/niogapfhnkbjmpnnobldcekclbgkbiah
คำอธิบาย A-Tree - Github review helper (Code browsing & Pull requests reviewing)
ขนาดไฟล์ 573 KB
จำนวนการติดตั้ง 182
เวอร์ชันปัจจุบัน 1.2.1
อัปเดตครั้งล่าสุด 2022-06-30
วันที่เผยแพร่ 2021-11-26
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา TimWei5566
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/shinenic/a-tree
URL หน้าช่วยเหลือ https://github.com/shinenic/a-tree
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "A-Tree - Github review helper",
    "short_name": "A-Tree",
    "version": "1.2.1",
    "description": "A-Tree - Github review helper (Code browsing & Pull requests reviewing)",
    "homepage_url": "https:\/\/github.com\/shinenic\/a-tree",
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "128": ".\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}