Examine source code of AWS Account Identifier

Inspect and view changes in AWS Account Identifier source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AWS Account Identifier",
  "version": "1.2.1",
  "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"
      ],
      "css": [
        "css/main.css"
      ]
    },
    {
      "matches": [
        "*://*.awsapps.com/start#/",
        "*://*.awsapps.com/start/*"
      ],
      "js": [
        "main-sso.js"
      ]
    }
  ]
}