ZD Portal Revamp

ZD Portal Revamp

Change look and feel of the Zendesk agent interface

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ZD Portal Revamp",
  "description": "Change look and feel of the Zendesk agent interface",
  "version": "2.9",
  "permissions": [
    "storage",
    "tabs",
    "http://*.zendesk.com/*",
    "https://*.zendesk.com/*"
  ],
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "browser_action": {
    "name": "Manipulate DOM",
    "default_title": "Set this page's color.",
    "default_icon": {
      "19": "img/icon.png",
      "38": "img/icon.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "js/options.js",
        "js/myscript.js",
        "js/jquery.min.js",
        "js/background.js",
        "js/jquery.jgrowl.js"
      ],
      "css": [
        "default.css",
        "css/jquery.jgrowl.css"
      ],
      "matches": [
        "http://*.zendesk.com/*",
        "https://*.zendesk.com/*"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "web_accessible_resources": [
    "img/icon128.png",
    "default.css"
  ]
}