GitHub code review

This extension adds hot keys and hierarchical file view to GitHub pull request pages.

GitHub code reviewคืออะไร?

GitHub code review เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This extension adds hot keys and hierarchical file view to GitHub pull request pages."

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

screenshot

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

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

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

                        When viewing file diffs in a GitHub pull request:
- Jump between diffs with j/k keys.
- Jump between comments with n/p keys.
- Press z key to view a hierarchical representation of the changed files. Each file in a hierarchy also shows a count of comments.                    

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

ชื่อ GitHub code review GitHub code review
ID lminappfllpnijhgafphnmcdfbnppmac
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/github-code-review/lminappfllpnijhgafphnmcdfbnppmac
คำอธิบาย This extension adds hot keys and hierarchical file view to GitHub pull request pages.
ขนาดไฟล์ 54.71 KB
จำนวนการติดตั้ง 324
เวอร์ชันปัจจุบัน 1.1.20
อัปเดตครั้งล่าสุด 2020-04-18
วันที่เผยแพร่ 2020-04-18
คะแนน 4.29/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/irek02/chrome-github-code-review
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub code review",
    "description": "This extension adds hot keys and hierarchical file view to GitHub pull request pages.",
    "version": "1.1.20",
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "src\/popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "lib\/jquery-1.12.3.min.js",
                "src\/main.min.js",
                "src\/chrome-ext-init.js"
            ],
            "css": [
                "src\/main.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/*.svg"
    ]
}