GitHub PR Check Status

provides better UI for PR check status details

What is GitHub PR Check Status?

GitHub PR Check Status is a Chrome extension developed by bdkent, and its main feature is "provides better UI for PR check status details".

Extension Screenshots

screenshot

Download GitHub PR Check Status Extension CRX File

Download GitHub PR Check Status extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name GitHub PR Check Status GitHub PR Check Status
ID ldddlenkajkonchccpkjapihmdgjgjop
Official URL https://chromewebstore.google.com/detail/github-pr-check-status/ldddlenkajkonchccpkjapihmdgjgjop
Description provides better UI for PR check status details
File Size 53.68 KB
Installation Count 49
Current Version 1.0.2
Last Updated 2023-09-20
Publish Date 2023-08-13
Developer bdkent
Email [email protected]
Payment Type free
Extension Website https://github.com/bdkent/gh-pr-ext
Help Page URL https://github.com/bdkent/gh-pr-ext/issues
Supported Languages 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"
        }
    }
}