CXone Agent Extension

CXone Agent Extension

CXone Agent Browser Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CXone Agent Extension",
  "short_name": "cxai",
  "description": "CXone Agent Browser Extension",
  "version": "1.0.27",
  "manifest_version": 3,
  "icons": {
    "16": "assets/images/dockLogo.png",
    "48": "assets/images/dockLogo.png",
    "128": "assets/images/dockLogo.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "CXone Extension",
    "default_icon": "assets/images/dockLogo.png"
  },
  "optional_permissions": [
    "system.cpu",
    "system.memory"
  ],
  "permissions": [
    "storage",
    "activeTab",
    "contextMenus",
    "offscreen"
  ],
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_globs": [
        "*.niceincontact.com/*",
        "*.nicecxone.com/*",
        "*.nicecxone-*.com/*",
        "*localhost:*/*"
      ],
      "run_at": "document_end",
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost:4200/*",
      "https://cxagent.nicecxone-dev.com/*",
      "https://cxagent.nicecxone-test.com/*",
      "https://cxagent.nicecxone-staging.com/*",
      "https://cxagent.nicecxone.com/*",
      "https://cxagent.nicecxone-gov.com/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/images/*.png",
        "assets/images/*.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "options.html"
      ],
      "matches": [
        "http://localhost:4200/*",
        "https://cxagent.nicecxone-dev.com/*",
        "https://cxagent.nicecxone-test.com/*",
        "https://cxagent.nicecxone-staging.com/*",
        "https://cxagent.nicecxone.com/*",
        "https://cxagent.nicecxone-gov.com/*"
      ]
    }
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAq8j1Nmz56KsgU4yn0UzQDHJ1pvIT6MerJYOnWX3y6yNeT9WLlqLFJZM1Hgz4GeTCZZvTVpFb+v1yvUfoHO3mfr9MMAwid4vXAklLFMkb+sjEc8gY9GkRH6ze+B7sg7g3N5+5m6AMwSBgewEAHW2smY2VMbFfyLVZlkf9rh1YBlLOYZMfpPmybIaSMfuW72Q11UXnP1LcfoiZW+qhW0x85mJp89tV8HaGnM6CYrBiNK2YD3aGSUAfLN9oFdOSqpEw5eFw4O9JmLlbFfixSXm9sBsS7JfkB7HPRnQBzjhk+VGkamSFzqnEu1zv10C2JnrnwHra+YZbmDAIaNBvGSXLnwIDAQAB"
}