Netflix party with video chat

Netflix party with video chat

Activate this extension to enjoy movies and TV shows with your friends and family through video chat, all with just a single click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "2.0.0",
  "default_locale": "en",
  "name": "__MSG_appTitle__",
  "description": "__MSG_appDesc__",
  "content_scripts": [
    {
      "matches": [
        "https://www.netflix.com/*"
      ],
      "js": [
        "react-app-holder.js"
      ]
    },
    {
      "matches": [
        "https://www.netflix.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "images/icons/grey16.png",
    "32": "images/icons/red32.png",
    "64": "images/icons/red64.png",
    "128": "images/icons/red128.png"
  },
  "action": {
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "videoScript.js",
        "images/icons/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}