Examine source code of Rainbow AWS: AWS console header color

Inspect and view changes in Rainbow AWS: AWS console header color 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",
  "manifest_version": 3,
  "name": "Rainbow AWS: AWS console header color",
  "version": "0.4.0",
  "description": "Change the color of the AWS console's headers based on the region you select.",
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "js": [
        "static/js/content.js"
      ],
      "matches": [
        "https://*.console.aws.amazon.com/*"
      ]
    }
  ],
  "icons": {
    "128": "icon128.png"
  },
  "action": {
    "default_icon": {
      "128": "icon128.png"
    },
    "default_title": "Rainbow AWS",
    "default_popup": "popup.html"
  },
  "options_page": "options.html"
}