Voopod

Watch online videos with your friends on a video call.

Qu'est-ce que Voopod ?

Voopod est une extension Chrome développée par Voopod, et sa fonction principale est "Watch online videos with your friends on a video call.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Voopod

Téléchargez les fichiers d'extension Voopod au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Voopod Voopod
ID ocjflmgpkcpnfidbfngkjnoccchfafbo
URL Officiel https://chromewebstore.google.com/detail/voopod/ocjflmgpkcpnfidbfngkjnoccchfafbo
Description Watch online videos with your friends on a video call.
Taille du Fichier 137 KB
Nombre d'Installations 81
Version Actuelle 0.0.9
Dernière Mise à Jour 2021-07-07
Date de Publication 2021-02-16
Évaluation 5.00/5 Total 5 Évaluations
Développeur Voopod
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://voopod.com
URL de la Page d'Aide https://voopod.com
Langues Prises en Charge 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';"
}