Extension for AWS SSO

Extension for AWS SSO

This extension is for AWS Single Sign-On (AWS SSO).

Merlin
Additional files are visible only to premium users

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"
  }
}