AWS SSO Auto-Expand Accounts

AWS SSO Auto-Expand Accounts

Tired of clicking to expand an AWS SSO account to then open the account's console? This add-on solves the problem by automatically…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AWS SSO Auto-Expand Accounts",
  "version": "1.0.3",
  "author": "Axel Leroy",
  "content_scripts": [
    {
      "matches": [
        "*://*.awsapps.com/*"
      ],
      "js": [
        "auto-expand.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  }
}