GitHub PR Check Status

provides better UI for PR check status details

O que é GitHub PR Check Status?

GitHub PR Check Status é uma extensão do Chrome desenvolvida por bdkent, e sua principal característica é "provides better UI for PR check status details".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão GitHub PR Check Status

Baixe arquivos de extensão GitHub PR Check Status no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome GitHub PR Check Status GitHub PR Check Status
ID ldddlenkajkonchccpkjapihmdgjgjop
URL Oficial https://chromewebstore.google.com/detail/github-pr-check-status/ldddlenkajkonchccpkjapihmdgjgjop
Descrição provides better UI for PR check status details
Tamanho do Arquivo 53.68 KB
Contagem de Instalações 49
Versão Atual 1.0.2
Última Atualização 2023-09-20
Data de Publicação 2023-08-13
Desenvolvedor bdkent
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/bdkent/gh-pr-ext
URL da Página de Ajuda https://github.com/bdkent/gh-pr-ext/issues
Idiomas Suportados 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"
        }
    }
}