GitHub Action Raw Log Viewer
Display GitHub Action Raw log in color, converting the Ansi colors to HTML
Co je GitHub Action Raw Log Viewer?
GitHub Action Raw Log Viewer je rozšíření Chrome vyvinuté Laurent Cozic, a jeho hlavní funkcí je „Display GitHub Action Raw log in color, converting the Ansi colors to HTML“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření GitHub Action Raw Log Viewer
Stáhněte si soubory rozšíření GitHub Action Raw Log Viewer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | GitHub Action Raw Log Viewer |
ID | lgejlnoopmcdglhfjblaeldbcfnmjddf |
Oficiální URL | https://chromewebstore.google.com/detail/github-action-raw-log-vie/lgejlnoopmcdglhfjblaeldbcfnmjddf |
Popis | Display GitHub Action Raw log in color, converting the Ansi colors to HTML |
Velikost souboru | 31.69 KB |
Počet instalací | 107 |
Aktuální Verze | 1.1.5 |
Poslední Aktualizace | 2024-03-04 |
Datum Vydání | 2022-11-09 |
Vývojář | Laurent Cozic |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/laurent22/github-actions-logs-extension |
URL Stránky Nápovědy | https://github.com/laurent22/github-actions-logs-extension |
URL Stránky Zásad Ochrany Soukromí | https://joplinapp.org/privacy |
Podporované Jazyky | 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\/*" ] } ] } |