Venia Co. Zoho Contact Importer

Venia Co. Zoho Contact Importer

Adds a button to tickets on Zoho Support to import contacts to Zoho CRM, should work on desk.zoho.com as well

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Venia Co. Zoho Contact Importer",
  "description": "Adds a button to tickets on Zoho Support to import contacts to Zoho CRM, should work on desk.zoho.com as well",
  "version": "1.2",
  "icons": {
    "128": "Venia-Zoho-Icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://support.zoho.com/*",
        "https://desk.zoho.com/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://crm.zoho.com/*"
      ],
      "js": [
        "crm.js"
      ]
    }
  ],
  "background": {
    "serviceworker": "eventPage.js"
  },
  "permissions": [
    "tabs",
    "webNavigation"
  ],
  "host_permissions": [
    "https://support.zoho.com/*"
  ]
}