AWS SSO Account Highlight

AWS SSO Account Highlight

Display a badge of current AWS Account Name

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AWS SSO Account Highlight",
  "description": "Display a badge of current AWS Account Name",
  "version": "1.0",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "init.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.console.aws.amazon.com/*"
      ],
      "js": [
        "aws-sso-account-highlight.js"
      ]
    }
  ],
  "options_page": "options.html",
  "icons": {
    "128": "/img/icon.png"
  }
}