AWS Colorful Navbar

AWS Colorful Navbar

Change navbar color and flag according to AWS region

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AWS Colorful Navbar",
  "description": "Change navbar color and flag according to AWS region",
  "version": "1.7.1",
  "manifest_version": 3,
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "*://*.console.aws.amazon.com/*"
  ],
  "action": {
    "default_icon": {
      "128": "icon.png"
    },
    "default_popup": "popup.html",
    "default_title": "AWS Colorful Navbar"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.console.aws.amazon.com/*"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "flags/*.png",
        "svcs/*.svg",
        "svcs/*.ico"
      ],
      "matches": [
        "*://*.console.aws.amazon.com/*"
      ]
    }
  ]
}