Streaming Party
Sync prime, hotstar and netflix videos with friends
Cos'è Streaming Party?
Streaming Party è un'estensione di Chrome sviluppata da https://streaming-party-007.herokuapp.com, e la sua funzione principale è "Sync prime, hotstar and netflix videos with friends".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Streaming Party
Scarica i file di estensione Streaming Party in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | |
ID | lbecgceillbkdjaodjngcigomgfdimgk |
URL Ufficiale | https://chrome.google.com/webstore/detail/streaming-party/lbecgceillbkdjaodjngcigomgfdimgk |
Descrizione | Sync prime, hotstar and netflix videos with friends |
Dimensione del File | 287 KB |
Conteggio Installazioni | 1,000 |
Versione Corrente | 1.0.4 |
Ultimo Aggiornamento | 2020-10-01 |
Data di Pubblicazione | 2020-06-03 |
Valutazione | 1.00/5 Totale 7 Valutazioni |
Sviluppatore | https://streaming-party-007.herokuapp.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://streaming-party-007.herokuapp.com/ |
Lingue Supportate | 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" } } |