Viewing Party

Extension for viewingparty.net

Wat is Viewing Party?

Viewing Party is een Chrome-extensie ontwikkeld door https://viewingparty.net, en de belangrijkste functie is "Extension for viewingparty.net".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Viewing Party

Download Viewing Party-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        An extension that uses HTTP requests to sync your Netflix, Disney+, HBO Max or Peacock viewing with a streamer on Twitch                    

Basisinformatie over de Extensie

Naam Viewing Party Viewing Party
ID pffaegjjkopdniooioigjfjkncgfiokl
Officiële URL https://chromewebstore.google.com/detail/viewing-party/pffaegjjkopdniooioigjfjkncgfiokl
Beschrijving Extension for viewingparty.net
Bestandsgrootte 238 KB
Aantal Installaties 28
Huidige Versie 2.7
Laatst Bijgewerkt 2022-11-24
Publicatiedatum 2021-07-19
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://viewingparty.net
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://viewingparty.net/privacy-policy
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Viewing Party",
    "description": "Extension for viewingparty.net",
    "version": "2.7",
    "manifest_version": 3,
    "background": {
        "service_worker": ".\/background.js"
    },
    "commands": {
        "Ctrl+M": {
            "suggested_key": {
                "default": "Ctrl+M",
                "mac": "Command+M"
            },
            "description": "Ctrl+M."
        }
    },
    "content_security_policy": [],
    "web_accessible_resources": [
        {
            "resources": [
                "host.js",
                "client.js",
                "netflixScript.js",
                "twitch_embed.js",
                "twitch_embed_v1.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_popup": "index.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/viewingparty.net\/host*",
                "*:\/\/viewingparty.net\/?host=true*",
                "https:\/\/www.viewingparty.net\/host\/*"
            ],
            "js": [
                "hostStarter.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "netflixScript.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.hbomax.com\/*"
            ],
            "js": [
                "disney.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.disneyplus.com\/*"
            ],
            "js": [
                "disney.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.peacocktv.com\/*"
            ],
            "js": [
                "peacock.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/www.localhost:3000\/*"
        ]
    },
    "host_permissions": [
        "https:\/\/netflix.com\/*",
        "https:\/\/viewingparty.vercel.app\/*"
    ],
    "permissions": [
        "storage",
        "tabs"
    ]
}