Viewing Party

Extension for viewingparty.net

Vad är Viewing Party?

Viewing Party är en Chrome-tillägg utvecklad av https://viewingparty.net, och dess huvudfunktion är "Extension for viewingparty.net".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Viewing Party-förlängningens CRX-fil

Ladda ner Viewing Party-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Viewing Party Viewing Party
ID pffaegjjkopdniooioigjfjkncgfiokl
Officiell webbadress https://chromewebstore.google.com/detail/viewing-party/pffaegjjkopdniooioigjfjkncgfiokl
Beskrivning Extension for viewingparty.net
Filstorlek 238 KB
Antal Installationer 28
Aktuell Version 2.7
Senast Uppdaterad 2022-11-24
Publiceringsdatum 2021-07-19
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare https://viewingparty.net
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://viewingparty.net/privacy-policy
Stödda Språk 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"
    ]
}