Viewing Party

Extension for viewingparty.net

What is Viewing Party?

Viewing Party is a Chrome extension developed by https://viewingparty.net, and its main feature is "Extension for viewingparty.net".

Extension Screenshots

screenshot
screenshot

Download Viewing Party Extension CRX File

Download Viewing Party extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Viewing Party Viewing Party
ID pffaegjjkopdniooioigjfjkncgfiokl
Official URL https://chromewebstore.google.com/detail/viewing-party/pffaegjjkopdniooioigjfjkncgfiokl
Description Extension for viewingparty.net
File Size 238 KB
Installation Count 28
Current Version 2.7
Last Updated 2022-11-24
Publish Date 2021-07-19
Rating 5.00/5 Total 1 Ratings
Developer https://viewingparty.net
Email [email protected]
Payment Type free
Privacy Policy Page URL https://viewingparty.net/privacy-policy
Supported Languages 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"
    ]
}