Pistachio View

Pistachio View

Deliver the right content to your customers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.5.6",
  "name": "Pistachio View",
  "description": "Deliver the right content to your customers",
  "author": "Pistachio View",
  "icons": {
    "16": "img/icons/16x16.png",
    "48": "img/icons/48x48.png",
    "128": "img/icons/128x128.png"
  },
  "web_accessible_resources": [
    "html/video.html",
    "html/permissions.html"
  ],
  "content_scripts": [
    {
      "run_at": "document_idle",
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/content.css"
      ],
      "js": [
        "dist/content.min.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.app.pistachioview.com/*"
    ]
  },
  "permissions": [
    "<all_urls>",
    "desktopCapture",
    "notifications",
    "storage",
    "tabs",
    "activeTab",
    "cookies",
    "*://*.app.pistachioview.com/"
  ],
  "browser_action": {
    "default_icon": "img/icons/48x48.png",
    "default_title": "Pistachio View | Capture & Connect",
    "default_popup": "html/popup.html?popup=true"
  },
  "background": {
    "scripts": [
      "dist/background.min.js"
    ],
    "persistent": false
  }
}