Voopod

Watch online videos with your friends on a video call.

O que é Voopod?

Voopod é uma extensão do Chrome desenvolvida por Voopod, e sua principal característica é "Watch online videos with your friends on a video call.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Voopod

Baixe arquivos de extensão Voopod no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Voopod Voopod
ID ocjflmgpkcpnfidbfngkjnoccchfafbo
URL Oficial https://chromewebstore.google.com/detail/voopod/ocjflmgpkcpnfidbfngkjnoccchfafbo
Descrição Watch online videos with your friends on a video call.
Tamanho do Arquivo 137 KB
Contagem de Instalações 81
Versão Atual 0.0.9
Última Atualização 2021-07-07
Data de Publicação 2021-02-16
Classificação 5.00/5 Total de 5 Avaliações
Desenvolvedor Voopod
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://voopod.com
URL da Página de Ajuda https://voopod.com
Idiomas Suportados 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';"
}