Netflix Party

Netflix Party

Install Netflix Party Plus Chrome extension to watch along with your friends

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "description": "Install Netflix Party Plus Chrome extension to watch along with your friends",
  "version": "3.2.0",
  "default_locale": "en",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "browser_action": {
    "default_icon": "32.png",
    "default_title": "__MSG_extName__",
    "default_popup": ""
  },
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "content_scripts": [
    {
      "js": [
        "content_script.js"
      ],
      "css": [
        "common.css"
      ],
      "run_at": "document_end",
      "match_about_blank": false,
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "128": "128.png"
  },
  "web_accessible_resources": [
    "img/*"
  ]
}