CommerceAI CRM

CommerceAI CRM

Genesys Interactions on CRMs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CommerceAI CRM",
  "version": "3",
  "manifest_version": 3,
  "description": "Genesys Interactions on CRMs",
  "content_scripts": [
    {
      "js": [
        "jquery-3.6.0.min.js",
        "init.js"
      ],
      "matches": [
        "https://*.force.com/*",
        "https://*.dynamics.com/*"
      ]
    }
  ],
  "icons": {
    "32": "cai32.png"
  },
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "popup": "popup.html"
  }
}