GitHub PR Check Status
provides better UI for PR check status details
Что такое GitHub PR Check Status?
GitHub PR Check Status - это расширение Chrome, разработанное bdkent, и его основная функция - "provides better UI for PR check status details".
Снимки экрана расширения
Скачать файл CRX расширения GitHub PR Check Status
Скачайте файлы расширений GitHub PR Check Status в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | GitHub PR Check Status |
ID | ldddlenkajkonchccpkjapihmdgjgjop |
Официальный URL | https://chromewebstore.google.com/detail/github-pr-check-status/ldddlenkajkonchccpkjapihmdgjgjop |
Описание | provides better UI for PR check status details |
Размер файла | 53.68 KB |
Количество установок | 49 |
Текущая Версия | 1.0.2 |
Последнее Обновление | 2023-09-20 |
Дата публикации | 2023-08-13 |
Разработчик | bdkent |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/bdkent/gh-pr-ext |
URL страницы помощи | https://github.com/bdkent/gh-pr-ext/issues |
Поддерживаемые языки | 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" } } } |