GitHub PR Check Status
provides better UI for PR check status details
Qu'est-ce que GitHub PR Check Status ?
GitHub PR Check Status est une extension Chrome développée par bdkent, et sa fonction principale est "provides better UI for PR check status details".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension GitHub PR Check Status
Téléchargez les fichiers d'extension GitHub PR Check Status au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | GitHub PR Check Status |
ID | ldddlenkajkonchccpkjapihmdgjgjop |
URL Officiel | https://chromewebstore.google.com/detail/github-pr-check-status/ldddlenkajkonchccpkjapihmdgjgjop |
Description | provides better UI for PR check status details |
Taille du Fichier | 53.68 KB |
Nombre d'Installations | 49 |
Version Actuelle | 1.0.2 |
Dernière Mise à Jour | 2023-09-20 |
Date de Publication | 2023-08-13 |
Développeur | bdkent |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/bdkent/gh-pr-ext |
URL de la Page d'Aide | https://github.com/bdkent/gh-pr-ext/issues |
Langues Prises en Charge | 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" } } } |