Examine source code of Extension for AWS SSO

Inspect and view changes in Extension for AWS SSO 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": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "version": "1.3.3",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.awsapps.com/start#/",
        "https://*.awsapps.com/start/*",
        "https://*.console.aws.amazon.com/*",
        "https://health.aws.amazon.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/fav.png"
      ],
      "matches": [
        "https://*.awsapps.com/*",
        "https://*.console.aws.amazon.com/*",
        "https://health.aws.amazon.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "page": "options.html"
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  }
}