GitHub Action Raw Log Viewer
Display GitHub Action Raw log in color, converting the Ansi colors to HTML
Τι είναι το GitHub Action Raw Log Viewer;
Το GitHub Action Raw Log Viewer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Laurent Cozic, και η κύρια λειτουργία του είναι "Display GitHub Action Raw log in color, converting the Ansi colors to HTML".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης GitHub Action Raw Log Viewer
Λήψη αρχείων επέκτασης GitHub Action Raw Log Viewer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | GitHub Action Raw Log Viewer |
ID | lgejlnoopmcdglhfjblaeldbcfnmjddf |
Επίσημο URL | https://chromewebstore.google.com/detail/github-action-raw-log-vie/lgejlnoopmcdglhfjblaeldbcfnmjddf |
Περιγραφή | Display GitHub Action Raw log in color, converting the Ansi colors to HTML |
Μέγεθος Αρχείου | 31.69 KB |
Αριθμός Εγκαταστάσεων | 107 |
Τρέχουσα Έκδοση | 1.1.5 |
Τελευταία Ενημέρωση | 2024-03-04 |
Ημερομηνία Δημοσίευσης | 2022-11-09 |
Προγραμματιστής | Laurent Cozic |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/laurent22/github-actions-logs-extension |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/laurent22/github-actions-logs-extension |
URL της Σελίδας Πολιτικής Απορρήτου | https://joplinapp.org/privacy |
Υποστηριζόμενες Γλώσσες | 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\/*" ] } ] } |