FuseDesk Help Desk and Messaging Platform

FuseDesk Help Desk and Messaging Platform

Supercharge your Infusionsoft app with FuseDesk. View and create cases right on each Contact record without leaving Infusionsoft!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "FuseDesk Help Desk and Messaging Platform",
  "version": "2.0",
  "description": "Supercharge your Infusionsoft app with FuseDesk. View and create cases right on each Contact record without leaving Infusionsoft!",
  "background": {
    "page": "background.html"
  },
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.infusionsoft.com/Contact/manageContact.jsp?view=edit*"
      ],
      "all_frames": true,
      "js": [
        "js/jquery-3.5.1.min.js",
        "js/jquery.dateFormat-1.0.js",
        "js/crm.js",
        "js/contactPageHandler.js",
        "js/worker.js"
      ]
    }
  ],
  "permissions": [
    "https://*.fusedesk.com/*",
    "https://*.infusionsoft.com/Contact/manageContact.jsp?view=edit*"
  ]
}