GitHub Action Raw Log Viewer

Display GitHub Action Raw log in color, converting the Ansi colors to HTML

O que é GitHub Action Raw Log Viewer?

GitHub Action Raw Log Viewer é uma extensão do Chrome desenvolvida por Laurent Cozic, e sua principal característica é "Display GitHub Action Raw log in color, converting the Ansi colors to HTML".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão GitHub Action Raw Log Viewer

Baixe arquivos de extensão GitHub Action Raw Log Viewer 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

                        By default the GitHub Actions raw logs are in plain text and often contains special color symbols (ANSI) that makes them very difficult to read. This extension not only removes these extra symbols but also use convert them to actual colors to make the log a lot more readable - the text will look as it would in your terminal window.

GitLab also offers its logs in raw format so the extension should work with it too.                    

Informações Básicas da Extensão

Nome GitHub Action Raw Log Viewer GitHub Action Raw Log Viewer
ID lgejlnoopmcdglhfjblaeldbcfnmjddf
URL Oficial https://chromewebstore.google.com/detail/github-action-raw-log-vie/lgejlnoopmcdglhfjblaeldbcfnmjddf
Descrição Display GitHub Action Raw log in color, converting the Ansi colors to HTML
Tamanho do Arquivo 31.69 KB
Contagem de Instalações 107
Versão Atual 1.1.5
Última Atualização 2024-03-04
Data de Publicação 2022-11-09
Desenvolvedor Laurent Cozic
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/laurent22/github-actions-logs-extension
URL da Página de Ajuda https://github.com/laurent22/github-actions-logs-extension
URL da Página de Política de Privacidade https://joplinapp.org/privacy
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GitHub Action Raw Log Viewer",
    "description": "Display GitHub Action Raw log in color, converting the Ansi colors to HTML",
    "version": "1.1.5",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/pipelines.actions.githubusercontent.com\/serviceHosts\/*",
                "https:\/\/*.actions.githubusercontent.com\/*",
                "https:\/\/cdn.artifacts.gitlab-static.net\/*",
                "https:\/\/*.windows.net\/actions-results\/*"
            ]
        }
    ]
}