AWS Region Color Highlights

AWS Region Color Highlights

In the AWS console's top right nav bar, the Region name will be uniquely colored so you'll know what Region you're in at all times.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "AWS Region Color Highlights",
  "description": "In the AWS console's top right nav bar, the Region name will be uniquely colored so you'll know what Region you're in at all times.",
  "version": "1.04",
  "author": "Jaime Barriga",
  "icons": {
    "16": "colorcube16.png",
    "48": "colorcube48.png",
    "128": "colorcube128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.aws.amazon.com/*",
        "https://*.amazonaws-us-gov.com/*"
      ],
      "js": [
        "colorchanger.js"
      ],
      "run_at": "document_end"
    }
  ]
}