AWS CloudWatch ANSI colors
This extension replaces ANSI escape sequences with the HTML equivalent in AWS CloudWatch (V1 and V2)
Vad är AWS CloudWatch ANSI colors?
AWS CloudWatch ANSI colors är en Chrome-tillägg utvecklad av https://theolebrun.com, och dess huvudfunktion är "This extension replaces ANSI escape sequences with the HTML equivalent in AWS CloudWatch (V1 and V2)".
Tilläggsskärmbilder
Ladda ner AWS CloudWatch ANSI colors-förlängningens CRX-fil
Ladda ner AWS CloudWatch ANSI colors-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | AWS CloudWatch ANSI colors |
ID | feoelakkoolicldilidmgbhpgabiodcd |
Officiell webbadress | https://chromewebstore.google.com/detail/aws-cloudwatch-ansi-color/feoelakkoolicldilidmgbhpgabiodcd |
Beskrivning | This extension replaces ANSI escape sequences with the HTML equivalent in AWS CloudWatch (V1 and V2) |
Filstorlek | 23.75 KB |
Antal Installationer | 222 |
Aktuell Version | 1.6 |
Senast Uppdaterad | 2023-11-29 |
Publiceringsdatum | 2020-06-03 |
Betyg | 3.67/5 Totalt 3 Betyg |
Utvecklare | https://theolebrun.com |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/Falydoor/aws-cloudwatch-ansi-colors |
Stödda Språk | 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" } } |