Mighty GitHub PRs

Restyle Pull Request screen for easier navigation and more focused review sessions.

Mighty GitHub PRsคืออะไร?

Mighty GitHub PRs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย adam.graf และคุณลักษณะหลักของมันคือ "Restyle Pull Request screen for easier navigation and more focused review sessions."

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

screenshot

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

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

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

                        This is an extension to restyle Pull Request screen for easier navigation and more focused review sessions in GitHub (public or any private/enterprise edition).

Main features:
- works on corporate enterprise domains, you just need to enable in the context menu of the extension in Chrome toolbar:
- shows file tree on the left hand side
- folders are collapsible
- folders are as concise as possible (if a folder containing on single folder it is merged with parent in visualization)
- deleted files are red and crossed through in file tree
- seen files become non-highlighted once seen
- only one single file's diff is shown if a file is selected from the tree
- large, visible Approve and Needs work buttons added ('Need work' button automatically adds a generic 'Please fix review items' comment.)
- clutter is reduced - elements on the top of the page is eliminated in the file navigation view to eliminate visual noise                    

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

ชื่อ Mighty GitHub PRs Mighty GitHub PRs
ID hopnfcjjghjpkfdiffabbpcpnhcpkceg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/mighty-github-prs/hopnfcjjghjpkfdiffabbpcpnhcpkceg
คำอธิบาย Restyle Pull Request screen for easier navigation and more focused review sessions.
ขนาดไฟล์ 39.5 KB
จำนวนการติดตั้ง 118
เวอร์ชันปัจจุบัน 1.1.1
อัปเดตครั้งล่าสุด 2021-03-29
วันที่เผยแพร่ 2019-11-12
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา adam.graf
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/netgrafe/mighty-github-prs
URL หน้าช่วยเหลือ https://github.com/netgrafe/mighty-github-prs
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mighty GitHub PRs",
    "version": "1.1.1",
    "description": "Restyle Pull Request screen for easier navigation and more focused review sessions.",
    "manifest_version": 2,
    "icons": {
        "48": "mighty-github-icon-48x48.png",
        "128": "mighty-github-icon-128x128.png",
        "192": "mighty-github-icon-192x192.png"
    },
    "browser_action": {
        "default_icon": {
            "48": "mighty-github-icon-48x48.png",
            "128": "mighty-github-icon-128x128.png",
            "192": "mighty-github-icon-192x192.png"
        }
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "*:\/\/*.github.com\/*"
    ],
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "webext-permissions-events-polyfill.js",
            "webext-dynamic-content-scripts.js",
            "webext-domain-permission-toggle.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.github.com\/*"
            ],
            "css": [
                "pr-optimizer.css"
            ],
            "js": [
                "pr-optimizer.js"
            ]
        }
    ]
}