AWS Account Identifier

AWS Account Identifier

Adds a description with a specific color to the AWS's navigation bar depending on the account you are connected to.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "AWS Account Identifier",
  "version": "1.0.2",
  "description": "Adds a description with a specific color to the AWS's navigation bar depending on the account you are connected to.",
  "manifest_version": 3,
  "action": {
    "default_title": "Options",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.console.aws.amazon.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.console.aws.amazon.com/*"
      ],
      "js": [
        "main.js"
      ]
    },
    {
      "matches": [
        "*://*.awsapps.com/start#/",
        "*://*.awsapps.com/start/*"
      ],
      "js": [
        "main-sso.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}