Examine source code of Colorize AWS CloudWatch Logs

Inspect and view changes in Colorize AWS CloudWatch Logs source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Colorize AWS CloudWatch Logs",
  "description": "Group logs visually on AWS CloudWatch",
  "version": "0.5.1",
  "homepage_url": "https://github.com/ilhan-mstf/colorize_cloudwatch_logs",
  "manifest_version": 2,
  "icons": {
    "16": "img/logo_16.png",
    "32": "img/logo_32.png",
    "64": "img/logo_64.png",
    "128": "img/logo_128.png"
  },
  "browser_action": {
    "default_popup": "hello.html",
    "default_icon": "img/logo_16.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.console.aws.amazon.com/cloudwatch/*"
      ],
      "js": [
        "lib/ansi_up.js",
        "colorize.js"
      ]
    }
  ]
}