GitHub Action Raw Log Viewer

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

¿Qué es GitHub Action Raw Log Viewer?

GitHub Action Raw Log Viewer es una extensión de Chrome desarrollada por Laurent Cozic, y su función principal es "Display GitHub Action Raw log in color, converting the Ansi colors to HTML".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión GitHub Action Raw Log Viewer

Descarga archivos de extensión GitHub Action Raw Log Viewer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre 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
Descripción Display GitHub Action Raw log in color, converting the Ansi colors to HTML
Tamaño del Archivo 31.69 KB
Cantidad de Instalaciones 107
Versión Actual 1.1.5
Última Actualización 2024-03-04
Fecha de Publicación 2022-11-09
Desarrollador Laurent Cozic
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/laurent22/github-actions-logs-extension
URL de la Página de Ayuda https://github.com/laurent22/github-actions-logs-extension
URL de la Página de Política de Privacidad https://joplinapp.org/privacy
Idiomas Soportados 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\/*"
            ]
        }
    ]
}