GitHub Action Raw Log Viewer
Display GitHub Action Raw log in color, converting the Ansi colors to HTML
Cos'è GitHub Action Raw Log Viewer?
GitHub Action Raw Log Viewer è un'estensione di Chrome sviluppata da Laurent Cozic, e la sua funzione principale è "Display GitHub Action Raw log in color, converting the Ansi colors to HTML".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitHub Action Raw Log Viewer
Scarica i file di estensione GitHub Action Raw Log Viewer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | GitHub Action Raw Log Viewer |
ID | lgejlnoopmcdglhfjblaeldbcfnmjddf |
URL Ufficiale | https://chromewebstore.google.com/detail/github-action-raw-log-vie/lgejlnoopmcdglhfjblaeldbcfnmjddf |
Descrizione | Display GitHub Action Raw log in color, converting the Ansi colors to HTML |
Dimensione del File | 31.69 KB |
Conteggio Installazioni | 107 |
Versione Corrente | 1.1.5 |
Ultimo Aggiornamento | 2024-03-04 |
Data di Pubblicazione | 2022-11-09 |
Sviluppatore | Laurent Cozic |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/laurent22/github-actions-logs-extension |
URL della Pagina di Aiuto | https://github.com/laurent22/github-actions-logs-extension |
URL della Pagina della Politica sulla Privacy | https://joplinapp.org/privacy |
Lingue Supportate | 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\/*" ] } ] } |