HBO Max Watch Party

HBO Max Watch Party

Stream HBO Max together!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.0.0",
  "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"
    ]
  },
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "48": "48.png",
    "128": "128.png"
  },
  "web_accessible_resources": [
    "img/*.svg",
    "web/*",
    "contentScript.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.joinparty.live/*"
      ],
      "js": [
        "join-room.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*.hbomax.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.joinparty.live/*"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{13c4d836-b462-48a1-ac1a-37a180f4a756}"
    }
  }
}