GitHub PR Check Status
provides better UI for PR check status details
Was ist GitHub PR Check Status?
GitHub PR Check Status ist eine Chrome-Erweiterung, die von bdkent entwickelt wurde, und ihr Hauptmerkmal ist "provides better UI for PR check status details".
Erweiterungsscreenshots
GitHub PR Check Status-Erweiterungs-CRX-Datei herunterladen
Laden Sie GitHub PR Check Status-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | GitHub PR Check Status |
ID | ldddlenkajkonchccpkjapihmdgjgjop |
Offizielle URL | https://chromewebstore.google.com/detail/github-pr-check-status/ldddlenkajkonchccpkjapihmdgjgjop |
Beschreibung | provides better UI for PR check status details |
Dateigröße | 53.68 KB |
Installationsanzahl | 49 |
Aktuelle Version | 1.0.2 |
Letztes Update | 2023-09-20 |
Veröffentlichungsdatum | 2023-08-13 |
Entwickler | bdkent |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/bdkent/gh-pr-ext |
Hilfeseite URL | https://github.com/bdkent/gh-pr-ext/issues |
Unterstützte Sprachen | 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" } } } |