GitHub PR Check Status

provides better UI for PR check status details

GitHub PR Check Statusคืออะไร?

GitHub PR Check Status เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bdkent และคุณลักษณะหลักของมันคือ "provides better UI for PR check status details"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub PR Check Status

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

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

                        The current GitHub pull request UI has a tiny window to the CI Action "Checks". Many large projects have dozen of checks that run per push but there is no good way to see / filter all the actions. This browser extension provides a little icon on the bottom right that when clicked will display an overlay that lets one see and filter the checks.                    

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

ชื่อ GitHub PR Check Status GitHub PR Check Status
ID ldddlenkajkonchccpkjapihmdgjgjop
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/github-pr-check-status/ldddlenkajkonchccpkjapihmdgjgjop
คำอธิบาย provides better UI for PR check status details
ขนาดไฟล์ 53.68 KB
จำนวนการติดตั้ง 49
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2023-09-20
วันที่เผยแพร่ 2023-08-13
ผู้พัฒนา bdkent
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/bdkent/gh-pr-ext
URL หน้าช่วยเหลือ https://github.com/bdkent/gh-pr-ext/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GitHub PR Check Status",
    "description": "provides better UI for PR check status details",
    "version": "1.0.2",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/*\/pull\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "42.0"
        }
    }
}