Voopod
Watch online videos with your friends on a video call.
Voopodとは何ですか?
VoopodはVoopodによって開発されたChromeの拡張機能で、その主な機能は「Watch online videos with your friends on a video call.」です。
拡張機能のスクリーンショット
Voopod拡張機能のCRXファイルをダウンロード
Voopod拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Voopod |
ID | ocjflmgpkcpnfidbfngkjnoccchfafbo |
公式URL | https://chromewebstore.google.com/detail/voopod/ocjflmgpkcpnfidbfngkjnoccchfafbo |
説明 | Watch online videos with your friends on a video call. |
ファイルサイズ | 137 KB |
インストール数 | 81 |
現在のバージョン | 0.0.9 |
最終更新日 | 2021-07-07 |
公開日 | 2021-02-16 |
評価 | 5.00/5 合計 5 レビュー |
開発者 | Voopod |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://voopod.com |
ヘルプページのURL | https://voopod.com |
対応言語 | 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';" } |