Agent Helper for Zendesk

Agent Helper for Zendesk

Empower your customer service agents with smart sentence autocomplete

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Agent Helper for Zendesk",
  "description": "Empower your customer service agents with smart sentence autocomplete",
  "version": "1.0.4",
  "page_action": {
    "default_icon": {
      "16": "images/logo16.png",
      "32": "images/logo32.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/logo16.png",
    "32": "images/logo32.png",
    "48": "images/logo48.png"
  },
  "permissions": [
    "https://*.zendesk.com/agent/*",
    "activeTab",
    "storage",
    "declarativeContent"
  ],
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "thirdParty/jquery-3.5.1.min.js",
        "thirdParty/popper-1.16.1.min.js",
        "thirdParty/bootstrap-4.5.2.min.js",
        "content_script.js"
      ],
      "css": [
        "suggest.css"
      ],
      "matches": [
        "https://*.zendesk.com/agent/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "search.html"
  ]
}