Qualtrics Agent Assist

Qualtrics Agent Assist

A chrome extension for delivering recommendations to customer service representatives.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "A chrome extension for delivering recommendations to customer service representatives.",
  "version": "0.0.1.32",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtbSq4cvA+BDe66xsatV3Ortv98g0zYt0FKhvvA/nPqBvtwVyes+bciI1RXUxAUTuz6T2vOOUYbE/GV1/kK0Hfu9FxcgpyDSf9QSLx1SXKpKrSn6EC9NS8YltD45zyNoym0nDlEc6yYfWw7lHRoYfGQcBWLfci7XX6PSeBjAu7Y+aHxQUBFPCGVBqOPOrD4MSpEM+iNVLvOzpXjadtaTWIk42qFJ+kRMN8/Kl8D6xx8M6hlA7hGPr8tLlvqRRT4/R5modjjJTT+aL3Y1tMLC7pDj8lyJD6Lf+/F1vclpucAQF5c5IUpp59e8XqDBP2zpb4DUukbHrmsePO4uvAJ9dSQIDAQAB",
  "manifest_version": 3,
  "name": "Qualtrics Agent Assist",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_icon": "images/icon-34.png",
    "default_popup": "action.html"
  },
  "icons": {
    "128": "images/icon-128.png"
  },
  "permissions": [
    "storage",
    "notifications",
    "unlimitedStorage",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "devtools_page": "devtools.html",
  "web_accessible_resources": [
    {
      "resources": [
        "popup.html"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://compass-dev.clarabridge.io/*",
      "https://compass-staging.clarabridge.io/*",
      "https://compass.clarabridge.io/*"
    ]
  }
}