Whatfix for Intuit (Deployment POC)

Whatfix for Intuit (Deployment POC)

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

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Whatfix for Intuit (Deployment POC)",
  "version": "2023.8.9.1636",
  "manifest_version": 3,
  "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"
  },
  "background": {
    "service_worker": "extension.background/extension.background.nocache.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.force.com/*",
        "*://*.intuit.com/*"
      ],
      "js": [
        "extension.foreground/extension.foreground.nocache.js"
      ],
      "all_frames": true,
      "exclude_matches": [
        "*://*.lightning.force.com/email/htmlbody/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.whatfix.com/*/extension/*"
    ]
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "whatfix.com/*",
        "config.json"
      ],
      "matches": [
        "*://*.force.com/*",
        "*://*.intuit.com/*"
      ]
    }
  ],
  "action": {
    "browser_action": {
      "default_icon": "logo19.png",
      "default_title": "Whatfix for Intuit (Deployment POC)"
    }
  },
  "permissions": [
    "webNavigation",
    "storage",
    "alarms"
  ],
  "host_permissions": [
    "https://*.whatfix.com/*"
  ]
}