Five9 Softphone Extension

Five9 Softphone Extension

This extension enables you to use a softphone embedded in the Five9 Web application.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Five9 Softphone Extension",
  "description": "This extension enables you to use a softphone embedded in the Five9 Web application.",
  "icons": {
    "16": "icon16.png",
    "24": "icon24.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png",
    "256": "icon256.png"
  },
  "version": "11.5.1",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "https://*.five9.com/*",
        "https://*.five9.eu/*",
        "https://*.five9lab.com/*"
      ],
      "js": [
        "injected.js"
      ]
    }
  ]
}