Streaming Party
Sync prime, hotstar and netflix videos with friends
Streaming Partyคืออะไร?
Streaming Party เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://streaming-party-007.herokuapp.com และคุณลักษณะหลักของมันคือ "Sync prime, hotstar and netflix videos with friends"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Streaming Party
ดาวน์โหลดไฟล์ส่วนขยาย Streaming Party ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Now sync your favourite tv-shows and movies from platforms like Netflix, Amazon Prime Video, Youtube etc. with family and friends for free! 5 easy steps for a synchronized viewing experience 1. Choose any video on the supported platform 2. Launch the extension and create a room 3. Share the room name 4. Ask friends or family to open the same video and join the room 5. Enjoy!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | lbecgceillbkdjaodjngcigomgfdimgk |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/streaming-party/lbecgceillbkdjaodjngcigomgfdimgk |
คำอธิบาย | Sync prime, hotstar and netflix videos with friends |
ขนาดไฟล์ | 287 KB |
จำนวนการติดตั้ง | 1,000 |
เวอร์ชันปัจจุบัน | 1.0.4 |
อัปเดตครั้งล่าสุด | 2020-10-01 |
วันที่เผยแพร่ | 2020-06-03 |
คะแนน | 1.00/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | https://streaming-party-007.herokuapp.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://streaming-party-007.herokuapp.com/ |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Streaming Party", "version": "1.0.4", "description": "Sync prime, hotstar and netflix videos with friends", "manifest_version": 2, "permissions": [ "activeTab", "declarativeContent", "storage" ], "background": { "page": "index.html#\/event-page" }, "content_scripts": [ { "matches": [ "https:\/\/*.primevideo.com\/*" ], "js": [ "content-script\/content-prime.js" ] }, { "matches": [ "https:\/\/*.hotstar.com\/*" ], "js": [ "content-script\/content-hotstar.js" ] }, { "matches": [ "https:\/\/*.netflix.com\/*" ], "js": [ "content-script\/content-netflix.js" ] }, { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "content-script\/content-youtube.js" ] } ], "page_action": { "default_icon": { "19": "icon.png", "38": "icon.png" }, "default_title": "Open popup!", "default_popup": "index.html#\/popup" }, "content_security_policy": "script-src 'self' https:\/\/streaming-party-007.herokuapp.com\/ https:\/\/www.googletagmanager.com\/ https:\/\/ssl.google-analytics.com\/ga.js; object-src 'self'", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" } } |