GitHub Action Raw Log Viewer

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

Was ist GitHub Action Raw Log Viewer?

GitHub Action Raw Log Viewer ist eine Chrome-Erweiterung, die von Laurent Cozic entwickelt wurde, und ihr Hauptmerkmal ist "Display GitHub Action Raw log in color, converting the Ansi colors to HTML".

Erweiterungsscreenshots

screenshot
screenshot

GitHub Action Raw Log Viewer-Erweiterungs-CRX-Datei herunterladen

Laden Sie GitHub Action Raw Log Viewer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name GitHub Action Raw Log Viewer GitHub Action Raw Log Viewer
ID lgejlnoopmcdglhfjblaeldbcfnmjddf
Offizielle URL https://chromewebstore.google.com/detail/github-action-raw-log-vie/lgejlnoopmcdglhfjblaeldbcfnmjddf
Beschreibung Display GitHub Action Raw log in color, converting the Ansi colors to HTML
Dateigröße 31.69 KB
Installationsanzahl 107
Aktuelle Version 1.1.5
Letztes Update 2024-03-04
Veröffentlichungsdatum 2022-11-09
Entwickler Laurent Cozic
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/laurent22/github-actions-logs-extension
Hilfeseite URL https://github.com/laurent22/github-actions-logs-extension
URL der Datenschutzrichtlinien-Seite https://joplinapp.org/privacy
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}