AWS CloudWatch ANSI colors
This extension replaces ANSI escape sequences with the HTML equivalent in AWS CloudWatch (V1 and V2)
Cos'è AWS CloudWatch ANSI colors?
AWS CloudWatch ANSI colors è un'estensione di Chrome sviluppata da https://theolebrun.com, e la sua funzione principale è "This extension replaces ANSI escape sequences with the HTML equivalent in AWS CloudWatch (V1 and V2)".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione AWS CloudWatch ANSI colors
Scarica i file di estensione AWS CloudWatch ANSI colors in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension replaces ANSI escape sequences in AWS CloudWatch to make logs easier to read. This is very useful for logs generated by a Spring Boot or Node.js application for example.
Informazioni di Base sull'Estensione
Nome | AWS CloudWatch ANSI colors |
ID | feoelakkoolicldilidmgbhpgabiodcd |
URL Ufficiale | https://chromewebstore.google.com/detail/aws-cloudwatch-ansi-color/feoelakkoolicldilidmgbhpgabiodcd |
Descrizione | This extension replaces ANSI escape sequences with the HTML equivalent in AWS CloudWatch (V1 and V2) |
Dimensione del File | 23.75 KB |
Conteggio Installazioni | 222 |
Versione Corrente | 1.6 |
Ultimo Aggiornamento | 2023-11-29 |
Data di Pubblicazione | 2020-06-03 |
Valutazione | 3.67/5 Totale 3 Valutazioni |
Sviluppatore | https://theolebrun.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Falydoor/aws-cloudwatch-ansi-colors |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "AWS CloudWatch ANSI colors", "version": "1.6", "description": "This extension replaces ANSI escape sequences with the HTML equivalent in AWS CloudWatch (V1 and V2)", "manifest_version": 3, "author": "Theo Lebrun", "homepage_url": "https:\/\/github.com\/Falydoor\/aws-cloudwatch-ansi-colors", "content_scripts": [ { "all_frames": true, "matches": [ "https:\/\/*.console.aws.amazon.com\/cloudwatch\/home?region=*" ], "run_at": "document_end", "js": [ "main.js" ] } ], "icons": { "128": "icon128.png" } } |