GitHub PR Check Status

provides better UI for PR check status details

GitHub PR Check Status là gì?

GitHub PR Check Status là một tiện ích mở rộng Chrome được phát triển bởi bdkent, và tính năng chính của nó là "provides better UI for PR check status details".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng GitHub PR Check Status

Tải xuống các tệp mở rộng GitHub PR Check Status dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GitHub PR Check Status GitHub PR Check Status
ID ldddlenkajkonchccpkjapihmdgjgjop
URL Chính Thức https://chromewebstore.google.com/detail/github-pr-check-status/ldddlenkajkonchccpkjapihmdgjgjop
Mô tả provides better UI for PR check status details
Kích Thước Tệp 53.68 KB
Số Lần Cài Đặt 49
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2023-09-20
Ngày Phát Hành 2023-08-13
Nhà Phát Triển bdkent
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/bdkent/gh-pr-ext
URL Trang Trợ Giúp https://github.com/bdkent/gh-pr-ext/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}