GitHub Action Raw Log Viewer
Display GitHub Action Raw log in color, converting the Ansi colors to HTML
What is GitHub Action Raw Log Viewer?
GitHub Action Raw Log Viewer is a Chrome extension developed by Laurent Cozic, and its main feature is "Display GitHub Action Raw log in color, converting the Ansi colors to HTML".
Extension Screenshots
Download GitHub Action Raw Log Viewer Extension CRX File
Download GitHub Action Raw Log Viewer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | GitHub Action Raw Log Viewer |
ID | lgejlnoopmcdglhfjblaeldbcfnmjddf |
Official URL | https://chromewebstore.google.com/detail/github-action-raw-log-vie/lgejlnoopmcdglhfjblaeldbcfnmjddf |
Description | Display GitHub Action Raw log in color, converting the Ansi colors to HTML |
File Size | 31.69 KB |
Installation Count | 107 |
Current Version | 1.1.5 |
Last Updated | 2024-03-04 |
Publish Date | 2022-11-09 |
Developer | Laurent Cozic |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/laurent22/github-actions-logs-extension |
Help Page URL | https://github.com/laurent22/github-actions-logs-extension |
Privacy Policy Page URL | https://joplinapp.org/privacy |
Supported Languages | 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\/*" ] } ] } |