HBO Watch Party

HBO Watch Party

Install HBO Watch Party Chrome extension to watch HBO Max along with your friends

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "version": "1.0.14",
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "16": "./img/icon16.png",
    "32": "./img/icon32.png",
    "48": "./img/icon48.png",
    "128": "./img/icon128.png"
  },
  "action": {
    "default_icon": "./img/icon128.png",
    "default_title": "__MSG_name__",
    "default_popup": "popup/index.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://play.max.com/*",
        "http://play.max.com/*"
      ],
      "js": [
        "content/index.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content/contentScript.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://hbowatchparty.net/*"
      ],
      "js": [
        "hboparty.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content/index.js",
        "content/videoController.js",
        "content/contentScript.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    },
    {
      "resources": [
        "hboparty.js"
      ],
      "matches": [
        "https://hbowatchparty.net/*"
      ]
    },
    {
      "resources": [
        "chat/index.html"
      ],
      "matches": [
        "https://*.max.com/*",
        "http://*.max.com/*"
      ]
    }
  ]
}