Zendesk Priority Highlights

Zendesk Priority Highlights

Highlight Zendesk tickets in Views based on priority

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Alex Culligan",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "name": "Zendesk Priority Highlights",
    "default_icon": {
      "16": "img/disabled/16.png",
      "24": "img/disabled/24.png",
      "32": "img/disabled/32.png",
      "48": "img/disabled/48.png",
      "128": "img/disabled/128.png",
      "256": "img/disabled/256.png"
    },
    "default_popup": "html/popup-options.html"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/jquery.js",
        "js/content.js"
      ],
      "matches": [
        "https://*.zendesk.com/agent/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "description": "Highlight Zendesk tickets in Views based on priority",
  "icons": {
    "16": "img/default/16.png",
    "24": "img/default/24.png",
    "32": "img/default/32.png",
    "48": "img/default/48.png",
    "128": "img/default/128.png",
    "256": "img/default/256.png"
  },
  "manifest_version": 2,
  "name": "Zendesk Priority Highlights",
  "options_ui": {
    "page": "html/options.html"
  },
  "permissions": [
    "declarativeContent",
    "storage"
  ],
  "short_name": "Priority Highlights",
  "version": "1.2.6"
}