Zendesk View Monitor

Zendesk View Monitor

Notifies on new tickets arriving in specific view in your Zendesk

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Zendesk View Monitor",
  "description": "Notifies on new tickets arriving in specific view in your Zendesk",
  "version": "1.1.1",
  "browser_action": {
    "default_icon": "icon_grey19x19.png",
    "default_popup": "popup.html",
    "default_title": "Waiting for connection"
  },
  "permissions": [
    "alarms",
    "https://*.zendesk.com/",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  }
}