Zest Assistant

Zest Assistant

Zest makes any document, file, or record stored on common cloud services accessible across any browser tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Zest Assistant",
  "short_name": "Zest Assistant",
  "description": "Zest makes any document, file, or record stored on common cloud services accessible across any browser tab",
  "version": "0.1.7",
  "homepage_url": "https://zest.is",
  "author": "Zest Sunrisers inc.",
  "icons": {
    "16": "resources/images/app-icons/zest_chrome_invert_16w.png",
    "48": "resources/images/app-icons/zest_chrome_invert_48w.png",
    "128": "resources/images/app-icons/zest_chrome_invert_128w.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "resources/images/browser_action/browser_action_invert_16x.png",
      "24": "resources/images/browser_action/browser_action_invert_24x.png",
      "32": "resources/images/browser_action/browser_action_invert_32x.png"
    },
    "default_title": "Zest"
  },
  "commands": {
    "zst-toggle-sidebar": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "windows": "Ctrl+Shift+E",
        "mac": "Command+Shift+E",
        "chromeos": "Ctrl+Shift+E",
        "linux": "Ctrl+Shift+E"
      },
      "description": "Open the Zest Assistant"
    }
  },
  "background": {
    "scripts": [
      "resources/js/app/background.ZYAPqy.min.js",
      "resources/js/app/vendors.ZYAPqy.min.js"
    ],
    "persistent": false
  },
  "externally_connectable": {
    "ids": [
      "lgbbbmmegpehafpempogpgacjnfcbekj"
    ],
    "matches": [
      "*://*.zest.is/*",
      "*://*.zest.website/*"
    ]
  },
  "permissions": [
    "*://*/*",
    "gcm",
    "tabs",
    "storage"
  ],
  "optional_permissions": [
    "contextMenus",
    "notifications"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "resources/css/contentScript.css"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "resources/images/*",
    "resources/html/*",
    "resources/css/*",
    "resources/js/app/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.google-analytics.com/; object-src 'self'"
}