Voopod

Watch online videos with your friends on a video call.

Voopod là gì?

Voopod là một tiện ích mở rộng Chrome được phát triển bởi Voopod, và tính năng chính của nó là "Watch online videos with your friends on a video call.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Voopod

Tải xuống các tệp mở rộng Voopod dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Voopod Voopod
ID ocjflmgpkcpnfidbfngkjnoccchfafbo
URL Chính Thức https://chromewebstore.google.com/detail/voopod/ocjflmgpkcpnfidbfngkjnoccchfafbo
Mô tả Watch online videos with your friends on a video call.
Kích Thước Tệp 137 KB
Số Lần Cài Đặt 81
Phiên Bản Hiện Tại 0.0.9
Cập Nhật Lần Cuối 2021-07-07
Ngày Phát Hành 2021-02-16
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Voopod
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://voopod.com
URL Trang Trợ Giúp https://voopod.com
Ngôn Ngữ Được Hỗ Trợ 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';"
}