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 |
官方網址 | 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 |
電子郵箱 | [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';" } |