Watch Party
Watch Netflix and Disney+ with your friends!
Watch Party क्या है?
Watch Party https://watchparty.rocks द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Watch Netflix and Disney+ with your friends!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Watch Party एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
TV is better with friends. But sometimes they're not in the neighborhood. With Watch Party, distance doesn't matter anymore. Browse and watch shows as you normally would on Netflix.com or DisneyPlus.com. We'll make sure the whole party is seeing the same thing by synchronizing everyone's playback. Why stream alone? Get Watch Party now! Version 0.2.6: + Added instructions that appear when clicking the extension icon. + Made sidebar width thinner on Disney+. Version 0.2.4: + Fixed a few issues related to Disney+ support. Version 0.2.0: + Added Disney+ support. + Improved sync accuracy across the board. + Improved stability of joining parties. Version 0.1.8: + Fixed connection issues for AdBlock users.
एक्सटेंशन की मूल जानकारी
नाम | Watch Party |
ID | dmcinkkljkjjdagmegjedmdhbcdmkjlo |
आधिकारिक URL | https://chromewebstore.google.com/detail/watch-party/dmcinkkljkjjdagmegjedmdhbcdmkjlo |
विवरण | Watch Netflix and Disney+ with your friends! |
फ़ाइल का आकार | 75.39 KB |
स्थापना संख्या | 20,000 |
वर्तमान संस्करण | 0.2.6 |
अंतिम अपडेट | 2020-04-14 |
प्रकाशन तिथि | 2020-04-13 |
रेटिंग | 3.43/5 कुल 21 रेटिंग्स |
डेवलपर | https://watchparty.rocks |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://watchparty.rocks |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Watch Party", "version": "0.2.6", "description": "Watch Netflix and Disney+ with your friends!", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/*" ], "js": [ "watchParty.js", "providers\/netflix\/netflixInjector.js" ], "css": [ "sidebar.css", "providers\/netflix\/netflix.css" ], "run_at": "document_end" }, { "matches": [ "https:\/\/www.disneyplus.com\/*" ], "js": [ "watchParty.js", "providers\/dplus\/dplusInjector.js" ], "css": [ "sidebar.css", "providers\/dplus\/dplus.css" ], "run_at": "document_end" }, { "matches": [ "*:\/\/watchparty.rocks\/*", "*:\/\/*.watchparty.rocks\/*" ], "js": [ "watchPartyBridge.js" ], "run_at": "document_end" } ], "browser_action": { "default_popup": "popup.html" }, "web_accessible_resources": [ "providers\/netflix\/netflix.js", "providers\/dplus\/dplus.js", "vue.prod.js", "sidebar.html", "sidebar.css", "sidebar.js", "pattern.svg", "manifest.json" ], "manifest_version": 2 } |