AWS CloudWatch ANSI colors

This extension replaces ANSI escape sequences with the HTML equivalent in AWS CloudWatch (V1 and V2)

What is AWS CloudWatch ANSI colors?

AWS CloudWatch ANSI colors is a Chrome extension developed by https://theolebrun.com, and its main feature is "This extension replaces ANSI escape sequences with the HTML equivalent in AWS CloudWatch (V1 and V2)".

Extension Screenshots

screenshot
screenshot

Download AWS CloudWatch ANSI colors Extension CRX File

Download AWS CloudWatch ANSI colors extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name AWS CloudWatch ANSI colors AWS CloudWatch ANSI colors
ID feoelakkoolicldilidmgbhpgabiodcd
Official URL https://chromewebstore.google.com/detail/aws-cloudwatch-ansi-color/feoelakkoolicldilidmgbhpgabiodcd
Description This extension replaces ANSI escape sequences with the HTML equivalent in AWS CloudWatch (V1 and V2)
File Size 23.75 KB
Installation Count 222
Current Version 1.6
Last Updated 2023-11-29
Publish Date 2020-06-03
Rating 3.67/5 Total 3 Ratings
Developer https://theolebrun.com
Email [email protected]
Payment Type free
Extension Website https://github.com/Falydoor/aws-cloudwatch-ansi-colors
Supported Languages 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"
    }
}