Watch Party
Watch Netflix, Youtube, Disney Plus, Hulu, HBO, and Amazon Prime Video in sync with friends
Vad är Watch Party?
Watch Party är en Chrome-tillägg utvecklad av Underpin Extensions, och dess huvudfunktion är "Watch Netflix, Youtube, Disney Plus, Hulu, HBO, and Amazon Prime Video in sync with friends".
Tilläggsskärmbilder
Ladda ner Watch Party-förlängningens CRX-fil
Ladda ner Watch Party-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Introducing "WatchOTTParty: Movie & TV Series Companion" - a powerful Chrome extension that revolutionizes the way you watch movies and TV series with your loved ones. SyncWatch allows synchronized viewing experiences, where you can enjoy content simultaneously with family and friends, no matter where they are. Stay connected through real-time chat, engaging in lively discussions while watching your favorite content. The extension seamlessly integrates with popular streaming OTT platforms, ensuring compatibility with a wide range of movies and TV series. The user-friendly interface enables easy navigation and control, allowing you to pause, play, rewind, or fast-forward together. Privacy and security are prioritized, with all communication encrypted for a safe environment. Install WatchOTTParty now and create unforgettable shared moments, whether it's a movie night with friends or a binge-watching session with family members. Embark on a synchronized viewing journey like never before with SyncWatch, designed for Manifest V3 and compatible with the latest version of Google Chrome. version : 1.1.2 -> added video chat
Grundläggande Information om Tillägg
Namn | Watch Party |
ID | akbbdmilignoplkhminiaecccigmpdmo |
Officiell webbadress | https://chromewebstore.google.com/detail/watch-party/akbbdmilignoplkhminiaecccigmpdmo |
Beskrivning | Watch Netflix, Youtube, Disney Plus, Hulu, HBO, and Amazon Prime Video in sync with friends |
Filstorlek | 552 KB |
Antal Installationer | 174 |
Aktuell Version | 1.1.3 |
Senast Uppdaterad | 2023-09-16 |
Publiceringsdatum | 2023-07-14 |
Betyg | 5.00/5 Totalt 13 Betyg |
Utvecklare | Underpin Extensions |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://www.watchottparty.com/ |
Hjälpsida URL | https://www.watchottparty.com/support |
Stödda Språk | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Watch Party", "description": "Watch Netflix, Youtube, Disney Plus, Hulu, HBO, and Amazon Prime Video in sync with friends", "version": "1.1.3", "manifest_version": 3, "icons": { "16": "16x16.png", "48": "48x48'.png", "128": "128x128.png" }, "action": { "default_popup": "popup.html", "default_title": "Watch Party", "default_icon": "16x16.png" }, "background": { "service_worker": "background.js" }, "permissions": [ "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "contentScript.js" ] }, { "matches": [ "https:\/\/*.netflix.com\/*" ], "js": [ "NetflixOTT.js" ] }, { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "ytblocker.js" ] }, { "matches": [ "https:\/\/www.hotstar.com\/in\/*" ], "js": [ "hotstar.js" ] }, { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "youtube.js" ] }, { "matches": [ "https:\/\/www.primevideo.com\/detail\/*" ], "js": [ "amazon.js" ] } ], "web_accessible_resources": [ { "matches": [ "https:\/\/*\/*" ], "resources": [ "netflix.js" ] } ] } |