Pretty Pull Requests (Github)

This extension applies various tweaks to the github pull-request code review pages.

Pretty Pull Requests (Github)คืออะไร?

Pretty Pull Requests (Github) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Brent Yates และคุณลักษณะหลักของมันคือ "This extension applies various tweaks to the github pull-request code review pages."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pretty Pull Requests (Github)

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

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

                        This extension will add various features to the diff view on Github's pull request pages.

Supports both files changed and commit diffs.

Current Features:
- Click on the file name to collapse a file, or collapse from bottom up via an added button
- Collapse/Expand all
- Collapse/Expand all that match a regex pattern
- Collapse/Expand added/removed lines
- File tree view allowing you to collapse a directory, or jump directly to a file diff
- Github Enterprise Support (set your URL via right-clicking the address bar icon, and going to 'options')                    

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

ชื่อ Pretty Pull Requests (Github) Pretty Pull Requests (Github)
ID ljnjpkadhhcdniohpfilddnhahoigdec
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/pretty-pull-requests-gith/ljnjpkadhhcdniohpfilddnhahoigdec
คำอธิบาย This extension applies various tweaks to the github pull-request code review pages.
ขนาดไฟล์ 412 KB
จำนวนการติดตั้ง 1,338
เวอร์ชันปัจจุบัน 2.11.1
อัปเดตครั้งล่าสุด 2018-01-31
วันที่เผยแพร่ 2018-01-31
คะแนน 3.95/5 รวมทั้งหมด 21 คะแนน
ผู้พัฒนา Brent Yates
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Yatser/prettypullrequests
URL หน้าช่วยเหลือ https://github.com/Yatser/prettypullrequests/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pretty Pull Requests (Github)",
    "description": "This extension applies various tweaks to the github pull-request code review pages.",
    "version": "2.11.1",
    "icons": {
        "32": "ppr-logo\/32x32.png",
        "64": "ppr-logo\/64x64.png",
        "128": "ppr-logo\/128x128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "activeTab"
    ],
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/pull\/*\/files",
                "https:\/\/github.com\/*\/commit*",
                "https:\/\/github.com\/*\/pulls*",
                "https:\/\/github.com\/*\/compare*",
                "https:\/\/github.com\/*\/*\/pulls*",
                "https:\/\/github.com\/*\/*\/pull\/*",
                "https:\/\/github.com\/*\/*\/pull\/*\/files",
                "https:\/\/github.com\/*\/*\/commit*",
                "https:\/\/github.com\/*\/*\/compare*"
            ],
            "js": [
                "jquery-1.9.1.min.js",
                "github.com.js"
            ],
            "css": [
                "pullrequest.css"
            ]
        }
    ],
    "page_action": {
        "default_icon": "ppr-logo\/128x128.png",
        "default_title": "Pretty Pull Requests",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "jquery-1.9.1.min.js"
    ],
    "options_page": "options.html"
}