Whatfix for Zoom

Whatfix for Zoom

Whatfix provides in-app interactive guides and walkthroughs to Ease User Onboarding, Reduce Training, and Improve Support.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Whatfix for Zoom",
  "version": "2020.5.26.1703",
  "manifest_version": 2,
  "description": "Whatfix provides in-app interactive guides and walkthroughs to Ease User Onboarding, Reduce Training, and Improve Support.",
  "icons": {
    "16": "logo16.png",
    "19": "logo19.png",
    "32": "logo32.png",
    "38": "logo38.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "permissions": [
    "http://*.whatfix.com/*",
    "https://*.whatfix.com/*",
    "webNavigation"
  ],
  "background": {
    "scripts": [
      "extension.background/extension.background.nocache.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.zoom.us/*"
      ],
      "js": [
        "extension.foreground/extension.foreground.nocache.js"
      ],
      "all_frames": true
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.whatfix.com/*/extension/*"
    ]
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "web_accessible_resources": [
    "whatfix.com/*"
  ],
  "browser_action": {
    "default_icon": "logo19.png",
    "default_title": "Whatfix for Zoom"
  }
}