Streaming Party

Sync prime, hotstar and netflix videos with friends

¿Qué es Streaming Party?

Streaming Party es una extensión de Chrome desarrollada por https://streaming-party-007.herokuapp.com, y su función principal es "Sync prime, hotstar and netflix videos with friends".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Streaming Party

Descarga archivos de extensión Streaming 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

                        Now sync your favourite tv-shows and movies from platforms like Netflix, Amazon Prime Video, Youtube etc. with family and friends for free!
5 easy steps for a synchronized viewing experience
1. Choose any video on the supported platform
2. Launch the extension and create a room
3. Share the room name
4. Ask friends or family to open the same video and join the room
5. Enjoy!                    

Información Básica de la Extensión

Nombre Streaming Party Streaming Party
ID lbecgceillbkdjaodjngcigomgfdimgk
URL Oficial https://chrome.google.com/webstore/detail/streaming-party/lbecgceillbkdjaodjngcigomgfdimgk
Descripción Sync prime, hotstar and netflix videos with friends
Tamaño del Archivo 287 KB
Cantidad de Instalaciones 1,000
Versión Actual 1.0.4
Última Actualización 2020-10-01
Fecha de Publicación 2020-06-03
Calificación 1.00/5 Total de 7 Calificaciones
Desarrollador https://streaming-party-007.herokuapp.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://streaming-party-007.herokuapp.com/
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Streaming Party",
    "version": "1.0.4",
    "description": "Sync prime, hotstar and netflix videos with friends",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "page": "index.html#\/event-page"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.primevideo.com\/*"
            ],
            "js": [
                "content-script\/content-prime.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.hotstar.com\/*"
            ],
            "js": [
                "content-script\/content-hotstar.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.netflix.com\/*"
            ],
            "js": [
                "content-script\/content-netflix.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content-script\/content-youtube.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "19": "icon.png",
            "38": "icon.png"
        },
        "default_title": "Open popup!",
        "default_popup": "index.html#\/popup"
    },
    "content_security_policy": "script-src 'self' https:\/\/streaming-party-007.herokuapp.com\/ https:\/\/www.googletagmanager.com\/ https:\/\/ssl.google-analytics.com\/ga.js; object-src 'self'",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    }
}