Netflix Party
Watch Netflix videos in sync with friends and family
Co je Netflix Party?
Netflix Party je rozšíření Chrome vyvinuté netflix party, a jeho hlavní funkcí je „Watch Netflix videos in sync with friends and family“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Netflix Party
Stáhněte si soubory rozšíření Netflix Party ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
'Netflix Party,' enhances the Netflix experience by enabling users to watch movies and TV shows simultaneously with their friends while enjoying real-time video and text chat. Netflix Party fosters a sense of togetherness and social interaction, allowing users to stay connected with loved ones, share reactions, and discuss their favorite shows and movies as if they were in the same room. Plus, with real-time synchronization, everyone can enjoy the same content at the same time, making Netflix more engaging and enjoyable for all.
Základní Informace o Rozšíření
Název | Netflix Party |
ID | igjdpakigkgjegiiekaabkpagjpaabpc |
Oficiální URL | https://chromewebstore.google.com/detail/netflix-party/igjdpakigkgjegiiekaabkpagjpaabpc |
Popis | Watch Netflix videos in sync with friends and family |
Velikost souboru | 1.28 MB |
Počet instalací | 60 |
Aktuální Verze | 1.2.0 |
Poslední Aktualizace | 2023-11-30 |
Datum Vydání | 2023-10-07 |
Hodnocení | 5.00/5 Celkem 13 Hodnocení |
Vývojář | netflix party |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://www.netflixparty.net/ |
URL Stránky Nápovědy | https://www.netflixparty.net/support |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Netflix Party", "description": "Watch Netflix videos in sync with friends and family", "version": "1.2.0", "manifest_version": 3, "icons": { "16": "Netflix16x16.png", "48": "Netflix48x48.png", "128": "Netflix128x128.png" }, "action": { "default_popup": "popup.html", "default_title": "Netflix ott Party", "default_icon": "Netflix16x16.png" }, "permissions": [ "tabs", "storage" ], "options_page": "options.html", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/redirect.netflixparty.net\/*" ], "js": [ "contentScript.js" ] }, { "matches": [ "https:\/\/www.netflix.com\/*" ], "js": [ "netflix.js" ] } ], "web_accessible_resources": [ { "matches": [ "https:\/\/*\/*" ], "resources": [ "netflixExt.js", "avatar1.svg", "avatar2.svg", "avatar3.svg", "avatar4.svg" ] } ] } |