GitHub Action Raw Log Viewer
Display GitHub Action Raw log in color, converting the Ansi colors to HTML
Wat is GitHub Action Raw Log Viewer?
GitHub Action Raw Log Viewer is een Chrome-extensie ontwikkeld door Laurent Cozic, en de belangrijkste functie is "Display GitHub Action Raw log in color, converting the Ansi colors to HTML".
Extensie Screenshots
Download het CRX-bestand van de extensie GitHub Action Raw Log Viewer
Download GitHub Action Raw Log Viewer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | GitHub Action Raw Log Viewer |
ID | lgejlnoopmcdglhfjblaeldbcfnmjddf |
Officiële URL | https://chromewebstore.google.com/detail/github-action-raw-log-vie/lgejlnoopmcdglhfjblaeldbcfnmjddf |
Beschrijving | Display GitHub Action Raw log in color, converting the Ansi colors to HTML |
Bestandsgrootte | 31.69 KB |
Aantal Installaties | 107 |
Huidige Versie | 1.1.5 |
Laatst Bijgewerkt | 2024-03-04 |
Publicatiedatum | 2022-11-09 |
Ontwikkelaar | Laurent Cozic |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/laurent22/github-actions-logs-extension |
Help Pagina-URL | https://github.com/laurent22/github-actions-logs-extension |
URL van de Privacybeleid Pagina | https://joplinapp.org/privacy |
Ondersteunde Talen | 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\/*" ] } ] } |