Rainbow AWS: AWS console header color

Rainbow AWS: AWS console header color

Change the color of the AWS console's headers based on the region you select.

Merlin
Additional files are visible only to premium users

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