HBO Watch Party
Watch HBO MAX videos in sync with friends and family
¿Qué es HBO Watch Party?
HBO Watch Party es una extensión de Chrome desarrollada por youtbadblocker, y su función principal es "Watch HBO MAX videos in sync with friends and family".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión HBO Watch Party
Descarga archivos de extensión HBO Watch Party en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Transform your HBO max viewing into a shared experience with our Chrome extension. Watch HBO max content simultaneously with friends and family, chat in real-time, and even video chat while you enjoy your favorite shows and movies. Our user-friendly extension is free to use and ensures a secure, synchronized, and immersive watching experience, making it easier than ever to connect with loved ones over your favorite content.
Información Básica de la Extensión
Nombre | HBO Watch Party |
ID | ojkhlfmofplghgodaihagbdhohmanmcb |
URL Oficial | https://chromewebstore.google.com/detail/hbo-watch-party/ojkhlfmofplghgodaihagbdhohmanmcb |
Descripción | Watch HBO MAX videos in sync with friends and family |
Tamaño del Archivo | 1.26 MB |
Cantidad de Instalaciones | 109 |
Versión Actual | 1.1.0 |
Última Actualización | 2023-12-14 |
Fecha de Publicación | 2023-12-14 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | youtbadblocker |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://www.hbomaxparty.net/ |
URL de la Página de Ayuda | https://www.hbomaxparty.net/support |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HBO Watch Party", "description": "Watch HBO MAX videos in sync with friends and family", "version": "1.1.0", "manifest_version": 3, "icons": { "16": "hbomax16x16.png", "48": "hbomax48x48.png", "128": "hbomax128x128.png" }, "action": { "default_popup": "popup.html", "default_title": "HBO MAX", "default_icon": "hbomax16x16.png" }, "permissions": [ "tabs", "storage" ], "options_page": "options.html", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/redirect.hbomaxparty.net\/*" ], "js": [ "contentScript.js" ] }, { "matches": [ "https:\/\/play.max.com\/*" ], "js": [ "hbomax.js" ] } ], "web_accessible_resources": [ { "matches": [ "https:\/\/*\/*" ], "resources": [ "avatar1.svg", "avatar2.svg", "avatar3.svg", "avatar4.svg" ] } ] } |