Viewing Party

Extension for viewingparty.net

Viewing Party란 무엇입니까?

Viewing Party은(는) https://viewingparty.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension for viewingparty.net"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Viewing Party 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

확장 프로그램 기본 정보

이름 Viewing Party Viewing Party
ID pffaegjjkopdniooioigjfjkncgfiokl
공식 URL https://chromewebstore.google.com/detail/viewing-party/pffaegjjkopdniooioigjfjkncgfiokl
설명 Extension for viewingparty.net
파일 크기 238 KB
설치 횟수 28
현재 버전 2.7
최근 업데이트 2022-11-24
출시 날짜 2021-07-19
평점 5.00/5 총 1 개의 평점
개발자 https://viewingparty.net
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://viewingparty.net/privacy-policy
지원되는 언어 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"
    ]
}