Extension for AWS SSO

Extension for AWS SSO

This extension is for AWS IAM Identity Center (The old name is AWS SSO).

Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "version": "1.3.3",
  "manifest_version": 2,
  "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": [
    "icons/fav.png"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html"
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{32595a80-3f8b-4225-825f-2f868f109dce}"
    }
  }
}