Watch Party
Watch Netflix and Disney+ with your friends!
什麼是Watch Party?
Watch Party是由https://watchparty.rocks開發的Chrome擴展程式,該擴展的主要功能是“Watch Netflix and Disney+ with your friends!”。
擴展截圖
下載Watch Party擴展crx文件
下載Watch Party擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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 } |