Voopod

Watch online videos with your friends on a video call.

Apa itu Voopod?

Voopod adalah ekstensi Chrome yang dikembangkan oleh Voopod, dan fitur utamanya adalah "Watch online videos with your friends on a video call.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Voopod

Unduh file ekstensi Voopod dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Voopod Voopod
ID ocjflmgpkcpnfidbfngkjnoccchfafbo
URL Resmi https://chromewebstore.google.com/detail/voopod/ocjflmgpkcpnfidbfngkjnoccchfafbo
Deskripsi Watch online videos with your friends on a video call.
Ukuran File 137 KB
Jumlah Instalasi 81
Versi Saat Ini 0.0.9
Terakhir Diperbarui 2021-07-07
Tanggal Publikasi 2021-02-16
Penilaian 5.00/5 Total 5 Penilaian
Pengembang Voopod
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://voopod.com
URL Halaman Bantuan https://voopod.com
Bahasa yang Didukung 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';"
}