Streaming Party

Sync prime, hotstar and netflix videos with friends

Was ist Streaming Party?

Streaming Party ist eine Chrome-Erweiterung, die von https://streaming-party-007.herokuapp.com entwickelt wurde, und ihr Hauptmerkmal ist "Sync prime, hotstar and netflix videos with friends".

Erweiterungsscreenshots

screenshot
screenshot

Streaming Party-Erweiterungs-CRX-Datei herunterladen

Laden Sie Streaming Party-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Streaming Party Streaming Party
ID lbecgceillbkdjaodjngcigomgfdimgk
Offizielle URL https://chrome.google.com/webstore/detail/streaming-party/lbecgceillbkdjaodjngcigomgfdimgk
Beschreibung Sync prime, hotstar and netflix videos with friends
Dateigröße 287 KB
Installationsanzahl 1,000
Aktuelle Version 1.0.4
Letztes Update 2020-10-01
Veröffentlichungsdatum 2020-06-03
Bewertung 1.00/5 Insgesamt 7 Bewertungen
Entwickler https://streaming-party-007.herokuapp.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://streaming-party-007.herokuapp.com/
Unterstützte Sprachen 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"
    }
}