Watch Party

Watch Netflix and Disney+ with your friends!

Hvad er Watch Party?

Watch Party er en Chrome-udvidelse udviklet af https://watchparty.rocks, og dens hovedfunktion er "Watch Netflix and Disney+ with your friends!".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Watch Party-udvidelses-CRX-fil

Download Watch Party-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Watch Party Watch Party
ID dmcinkkljkjjdagmegjedmdhbcdmkjlo
Officiel URL https://chromewebstore.google.com/detail/watch-party/dmcinkkljkjjdagmegjedmdhbcdmkjlo
Beskrivelse Watch Netflix and Disney+ with your friends!
Filstørrelse 75.39 KB
Antal Installationer 20,000
Nuværende Version 0.2.6
Senest Opdateret 2020-04-14
Udgivelsesdato 2020-04-13
Bedømmelse 3.43/5 Samlet 21 Bedømmelser
Udvikler https://watchparty.rocks
Betalingsmetode free
Udvidelseswebsted https://watchparty.rocks
Understøttede Sprog 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
}