AWS CloudWatch ANSI colors

AWS CloudWatch ANSI colors

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

Merlin
Additional files are visible only to premium users

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"
  }
}