CXone Guide Extension

CXone Guide Extension

Browse websites with CXone Guide automatically loaded. This feature can be toggled on and off.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CXone Guide Extension",
  "description": "Browse websites with CXone Guide automatically loaded. This feature can be toggled on and off.",
  "version": "3.4",
  "manifest_version": 3,
  "icons": {
    "32": "/icons/favicon.png",
    "48": "/icons/favicon.png",
    "100": "/icons/favicon.png",
    "128": "/icons/favicon.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "resources/inject-guide.js",
        "resources/create-guide-tag.js",
        "resources/reset-profile.js",
        "resources/reset-profile-client.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "32": "/icons/favicon.png",
      "48": "/icons/favicon.png",
      "100": "/icons/favicon.png",
      "128": "/icons/favicon.png"
    }
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "guide-script-filter",
        "enabled": false,
        "path": "guide-script-filter.json"
      }
    ]
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "contextMenus",
    "webNavigation",
    "declarativeNetRequest"
  ]
}