GitHub Code Review Helper

This extension Helps code review on GitHub

GitHub Code Review Helperคืออะไร?

GitHub Code Review Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย moshe.zemah และคุณลักษณะหลักของมันคือ "This extension Helps code review on GitHub"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub Code Review Helper

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

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

                        This extension helps the reviewer by adding a files tree left to the files diff in github. 
This way you can easily navigate to files, mark them as "Done", collapse/expand all files...

Other useful feature: 
 - Make the files header sticky (so when scrolling you always see which files are you looking at)
 - When in the conversation part of the Pull request, jump directly to the "Checks" part instead of scrolling all the way down (on key press)
 - "Checks" list is higher (so you won't need to scroll inside it
 - Jump to next/previous diff file
 - Jump to next/previous code review comment
 - Under "Files changed" tab - navigate to conversation tab with a single key stroke (no need to scroll all the way up)                    

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

ชื่อ GitHub Code Review Helper GitHub Code Review Helper
ID pnklichompgfnakhgfoakpebjaidlpdk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/github-code-review-helper/pnklichompgfnakhgfoakpebjaidlpdk
คำอธิบาย This extension Helps code review on GitHub
ขนาดไฟล์ 455 KB
จำนวนการติดตั้ง 74
เวอร์ชันปัจจุบัน 2.3.3
อัปเดตครั้งล่าสุด 2020-12-10
วันที่เผยแพร่ 2020-04-06
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา moshe.zemah
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Code Review Helper",
    "description": "This extension Helps code review on GitHub",
    "version": "2.3.3",
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "src\/popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "lib\/jquery-1.12.3.min.js",
                "src\/main.js",
                "src\/main\/AppInteractionService.js",
                "src\/main\/DecorationService.js",
                "src\/main\/HierarchyGeneratorService.js",
                "src\/main\/HotKeysService.js",
                "src\/main\/LocalStorageService.js",
                "src\/chrome-ext-init.js"
            ],
            "css": [
                "icons\/file-icon-classic.css",
                "src\/main.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/*.svg",
        "icons\/classic\/*.svg"
    ]
}