GitHub Action Raw Log Viewer

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

Vad är GitHub Action Raw Log Viewer?

GitHub Action Raw Log Viewer är en Chrome-tillägg utvecklad av Laurent Cozic, och dess huvudfunktion är "Display GitHub Action Raw log in color, converting the Ansi colors to HTML".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner GitHub Action Raw Log Viewer-förlängningens CRX-fil

Ladda ner GitHub Action Raw Log Viewer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn GitHub Action Raw Log Viewer GitHub Action Raw Log Viewer
ID lgejlnoopmcdglhfjblaeldbcfnmjddf
Officiell webbadress https://chromewebstore.google.com/detail/github-action-raw-log-vie/lgejlnoopmcdglhfjblaeldbcfnmjddf
Beskrivning Display GitHub Action Raw log in color, converting the Ansi colors to HTML
Filstorlek 31.69 KB
Antal Installationer 107
Aktuell Version 1.1.5
Senast Uppdaterad 2024-03-04
Publiceringsdatum 2022-11-09
Utvecklare Laurent Cozic
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/laurent22/github-actions-logs-extension
Hjälpsida URL https://github.com/laurent22/github-actions-logs-extension
URL till Sekretesspolicy Sidan https://joplinapp.org/privacy
Stödda Språk 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\/*"
            ]
        }
    ]
}