Disney Plus Watch Party

Disney Plus Watch Party

Watch Disney+ Videos with Friends anytime, anywhere!

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_name__",
  "description": "__MSG_description__",
  "version": "0.0.2",
  "default_locale": "en",
  "permissions": [
    "tabs"
  ],
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com https://cdnjs.cloudflare.com https://maxcdn.bootstrapcdn.com 'unsafe-eval'; object-src 'self'",
  "browser_action": {
    "default_icon": "128.png",
    "default_title": "__MSG_name__",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js",
      "backgroundScript.js"
    ]
  },
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "48": "48.png",
    "128": "128.png"
  },
  "web_accessible_resources": [
    "img/*.svg",
    "web/*",
    "contentScript.js",
    "join-room.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.join-room.com/*"
      ],
      "js": [
        "join-room.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*.disneyplus.com/*",
        "http://*.disneyplus.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.join-room.com/*"
    ]
  }
}