BingeBox - Watch movies with voice chat

BingeBox - Watch movies with voice chat

Watch Primevideo and Netflix with friends using built in chat and group voice call.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "BingeBox - Watch movies with voice chat",
  "description": "Watch Primevideo and Netflix with friends using built in chat and group voice call.",
  "version": "0.0.6",
  "icons": {
    "16": "img/16.png",
    "48": "img/48.png",
    "128": "img/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.primevideo.com/*"
      ],
      "js": [
        "js/content.js"
      ]
    },
    {
      "matches": [
        "*://*.netflix.com/*"
      ],
      "js": [
        "js/contentNetflix.js"
      ]
    }
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "img/16.png"
    },
    "default_title": "BingeBox"
  },
  "web_accessible_resources": [
    "img/PoweredBy_200px-Black_HorizText.png",
    "img/popkaun-bg.png",
    "img/minimal.png",
    "img/minimal-desaturated.svg"
  ]
}