GitHub PR Check Status

provides better UI for PR check status details

Hvad er GitHub PR Check Status?

GitHub PR Check Status er en Chrome-udvidelse udviklet af bdkent, og dens hovedfunktion er "provides better UI for PR check status details".

Udvidelsesskærmbilleder

screenshot

Download GitHub PR Check Status-udvidelses-CRX-fil

Download GitHub PR Check Status-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn GitHub PR Check Status GitHub PR Check Status
ID ldddlenkajkonchccpkjapihmdgjgjop
Officiel URL https://chromewebstore.google.com/detail/github-pr-check-status/ldddlenkajkonchccpkjapihmdgjgjop
Beskrivelse provides better UI for PR check status details
Filstørrelse 53.68 KB
Antal Installationer 49
Nuværende Version 1.0.2
Senest Opdateret 2023-09-20
Udgivelsesdato 2023-08-13
Udvikler bdkent
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/bdkent/gh-pr-ext
Hjælpeside-URL https://github.com/bdkent/gh-pr-ext/issues
Understøttede Sprog 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"
        }
    }
}