Examine source code of AWS AlwaysON

Inspect and view changes in AWS AlwaysON 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",
  "manifest_version": 3,
  "name": "AWS AlwaysON",
  "description": "Stay logged in to AWS console and get STS credentials for CLI access.",
  "version": "1.2.1",
  "action": {
    "default_popup": "menu.html"
  },
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "permissions": [
    "storage",
    "alarms"
  ],
  "host_permissions": [
    "https://accounts.google.com/*",
    "https://signin.aws.amazon.com/*",
    "https://console.aws.amazon.com/*",
    "https://sts.amazonaws.com/*",
    "http://localhost/*"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  }
}