Netflix Party
Watch Netflix videos in sync with friends and family
什麼是Netflix Party?
Netflix Party是由netflix party開發的Chrome擴展程式,該擴展的主要功能是“Watch Netflix videos in sync with friends and family”。
擴展截圖
下載Netflix Party擴展crx文件
下載Netflix Party擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
'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.
擴展基本資訊
名稱 | Netflix Party |
ID | igjdpakigkgjegiiekaabkpagjpaabpc |
官方網址 | https://chromewebstore.google.com/detail/netflix-party/igjdpakigkgjegiiekaabkpagjpaabpc |
簡介 | Watch Netflix videos in sync with friends and family |
檔案大小 | 1.28 MB |
安裝次數 | 60 |
目前版本 | 1.2.0 |
更新時間 | 2023-11-30 |
上架時間 | 2023-10-07 |
評分 | 5.00/5 共 13 次評分 |
開發者 | netflix party |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://www.netflixparty.net/ |
說明頁面URL | https://www.netflixparty.net/support |
支援的語言 | 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" ] } ] } |