Voopod
Watch online videos with your friends on a video call.
Voopod क्या है?
Voopod Voopod द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Watch online videos with your friends on a video call."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Voopod एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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';" } |