Netflix Party watch and win exciting prizes

Netflix Party watch and win exciting prizes

Watch Netflix videos in sync with friends and family

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Netflix Party watch and win exciting prizes",
  "description": "Watch Netflix videos in sync with friends and family",
  "version": "1.0.0",
  "manifest_version": 3,
  "icons": {
    "16": "Netflix16x16.png",
    "48": "Netflix48x48.png",
    "128": "Netflix128x128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Netflix Party watch and win exciting prizes",
    "default_icon": "Netflix16x16.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://redirect.netflixparty.net/*"
      ],
      "js": [
        "contentScript.js"
      ]
    },
    {
      "matches": [
        "https://www.netflix.com/*"
      ],
      "js": [
        "netflix.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://*/*"
      ],
      "resources": [
        "netflixExt.js",
        "avatar1.svg",
        "avatar2.svg",
        "avatar3.svg",
        "avatar4.svg",
        "header-logo.svg",
        "chat-bg.png"
      ]
    }
  ]
}