Zoho Desk ASAP Extension

Zoho Desk ASAP Extension

Take help articles closer to your site visitors and improve customer support. Note: Works only with Zoho Desk-powered help centers.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Zoho Desk ASAP Extension",
  "manifest_version": 2,
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Take help articles closer to your site visitors and improve customer support. Note: Works only with Zoho Desk-powered help centers.",
  "version": "2.0.5",
  "icons": {
    "16": "./src/image/Tooltip_disble_icon.png",
    "48": "./src/image/Tooltip_disble_icon.png",
    "128": "./src/image/Tooltip_disble_icon.png"
  },
  "permissions": [
    "cookies",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "./src/js/background.js"
    ]
  },
  "browser_action": {
    "default_title": "Zoho Desk ASAP Extension"
  },
  "content_scripts": [
    {
      "css": [
        "./src/css/outerStyles.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./src/js/content.js",
        "./src/js/editorFiles/ZohoDeskEditor.js"
      ]
    }
  ]
}