AWS CloudWatch ANSI colors
This extension replaces ANSI escape sequences with the HTML equivalent in AWS CloudWatch (V1 and V2)
Apa itu AWS CloudWatch ANSI colors?
AWS CloudWatch ANSI colors adalah ekstensi Chrome yang dikembangkan oleh https://theolebrun.com, dan fitur utamanya adalah "This extension replaces ANSI escape sequences with the HTML equivalent in AWS CloudWatch (V1 and V2)".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi AWS CloudWatch ANSI colors
Unduh file ekstensi AWS CloudWatch ANSI colors dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | AWS CloudWatch ANSI colors |
ID | feoelakkoolicldilidmgbhpgabiodcd |
URL Resmi | https://chromewebstore.google.com/detail/aws-cloudwatch-ansi-color/feoelakkoolicldilidmgbhpgabiodcd |
Deskripsi | This extension replaces ANSI escape sequences with the HTML equivalent in AWS CloudWatch (V1 and V2) |
Ukuran File | 23.75 KB |
Jumlah Instalasi | 222 |
Versi Saat Ini | 1.6 |
Terakhir Diperbarui | 2023-11-29 |
Tanggal Publikasi | 2020-06-03 |
Penilaian | 3.67/5 Total 3 Penilaian |
Pengembang | https://theolebrun.com |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/Falydoor/aws-cloudwatch-ansi-colors |
Bahasa yang Didukung | 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" } } |