Contivio.com

Contivio.com

Contivio.com’s cloud contact center software deploys as a toolbar in your browser. It extends your CRM solution and empowers your…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Contivio.com",
  "author": "Contivio.com",
  "version": "1.7.2",
  "icons": {
    "24": "images/contivio_24x24.png",
    "32": "images/contivio_32x32.png",
    "64": "images/contivio_64x64.png"
  },
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "webRequest",
    "storage",
    "system.display",
    "alarms"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "action": {
    "default_icon": "images/browser_action_off.png",
    "default_title": "Contivio",
    "default_popup": "options.html"
  },
  "short_name": "Contivio.com",
  "background": {
    "service_worker": "main_background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "comms_content.js",
        "toolbar_content.js",
        "dialer_content.js",
        "webrobot_content.js",
        "webrobot_util.js"
      ],
      "run_at": "document_end"
    }
  ]
}