Amazon Connect Screen Pop

Amazon Connect Screen Pop

Amazon Connect Contact Control Panel (CCP) Screen Pop

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Amazon Connect Screen Pop",
  "version": "1.1",
  "action": {
    "default_icon": {
      "16": "icons/16.png",
      "24": "icons/24.png",
      "32": "icons/32.png"
    }
  },
  "description": "Amazon Connect Contact Control Panel (CCP) Screen Pop",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "author": "Purple Network",
  "content_scripts": [
    {
      "matches": [
        "https://*.my.connect.aws/ccp-v2*",
        "https://*.my.connect.aws/agent-app-v2*"
      ],
      "js": [
        "scripts/inject.js"
      ],
      "run_at": "document_end"
    }
  ],
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "https://*.my.connect.aws/*"
    ]
  },
  "options_page": "options/options.html",
  "permissions": [
    "storage"
  ],
  "version_name": "1.0",
  "web_accessible_resources": [
    {
      "resources": [
        "scripts/content-script.js"
      ],
      "matches": [
        "https://*.my.connect.aws/*"
      ]
    }
  ]
}