Voopod

Watch online videos with your friends on a video call.

¿Qué es Voopod?

Voopod es una extensión de Chrome desarrollada por Voopod, y su función principal es "Watch online videos with your friends on a video call.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Voopod

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

                        Enjoy movies on Netflix, Amazon Prime, SonyLiv, Hotstar and other OTT websites with your friends. 

Voopod is a platform that will enable you to watch Internet videos with your friends. While watching you can communicate with your friends via Live video call or text chat. 

The host of the Voopod party will control where the guests will watch video and will control the video playback remotely.                    

Información Básica de la Extensión

Nombre Voopod Voopod
ID ocjflmgpkcpnfidbfngkjnoccchfafbo
URL Oficial https://chromewebstore.google.com/detail/voopod/ocjflmgpkcpnfidbfngkjnoccchfafbo
Descripción Watch online videos with your friends on a video call.
Tamaño del Archivo 137 KB
Cantidad de Instalaciones 81
Versión Actual 0.0.9
Última Actualización 2021-07-07
Fecha de Publicación 2021-02-16
Calificación 5.00/5 Total de 5 Calificaciones
Desarrollador Voopod
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://voopod.com
URL de la Página de Ayuda https://voopod.com
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Voopod",
    "version": "0.0.9",
    "description": "Watch online videos with your friends on a video call.",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "32": "icons\/32.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/voopod.com\/*",
                "https:\/\/voopod.com\/*",
                "http:\/\/localhost:61814\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "http:\/\/voopod.com\/*",
                "https:\/\/voopod.com\/*",
                "http:\/\/localhost:61814\/*"
            ],
            "js": [
                "vidctrl.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/voopod.com\/*"
        ]
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'; font-src 'self'; connect-src 'self';"
}