GitHub Action Raw Log Viewer
Display GitHub Action Raw log in color, converting the Ansi colors to HTML
Qu'est-ce que GitHub Action Raw Log Viewer ?
GitHub Action Raw Log Viewer est une extension Chrome développée par Laurent Cozic, et sa fonction principale est "Display GitHub Action Raw log in color, converting the Ansi colors to HTML".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension GitHub Action Raw Log Viewer
Téléchargez les fichiers d'extension GitHub Action Raw Log Viewer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | GitHub Action Raw Log Viewer |
ID | lgejlnoopmcdglhfjblaeldbcfnmjddf |
URL Officiel | 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 |
Taille du Fichier | 31.69 KB |
Nombre d'Installations | 107 |
Version Actuelle | 1.1.5 |
Dernière Mise à Jour | 2024-03-04 |
Date de Publication | 2022-11-09 |
Développeur | Laurent Cozic |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/laurent22/github-actions-logs-extension |
URL de la Page d'Aide | https://github.com/laurent22/github-actions-logs-extension |
URL de la Page de Politique de Confidentialité | https://joplinapp.org/privacy |
Langues Prises en Charge | 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\/*" ] } ] } |