My Disney Pal - Watch Disney Plus Together!

My Disney Pal - Watch Disney Plus Together!

Watch videos on Disney+ / Disney Plus with friends. Have a Disney Plus Party!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "My Disney Pal - Watch Disney Plus Together!",
  "version": "2.0",
  "description": "Watch videos on Disney+ / Disney Plus with friends. Have a Disney Plus Party!",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "js/redirectRoom.js"
      ],
      "matches": [
        "*://*.mydisneypal.com/rooms/*"
      ],
      "run_at": "document_end"
    },
    {
      "css": [
        "styles/alert.css"
      ],
      "js": [
        "js/popup/joinRoomMessage.js"
      ],
      "matches": [
        "https://www.disneyplus.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "icons": {
    "128": "images/icon128.png"
  },
  "web_accessible_resources": [
    "html/chat.html",
    "html/reactions.html",
    "styles/reactions.css",
    "styles/chat.css",
    "semantic/themes/default/assets/fonts/*",
    "semantic/themes/default/assets/fonts/*",
    "semantic/themes/default/assets/images/*.png",
    "semantic/semantic.min.css",
    "semantic/semantic.min.js",
    "images/*.png",
    "images/*.svg",
    "images/*.mp4"
  ],
  "manifest_version": 2
}