Viewing Party

Extension for viewingparty.net

Viewing Partyคืออะไร?

Viewing Party เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://viewingparty.net และคุณลักษณะหลักของมันคือ "Extension for viewingparty.net"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Viewing Party

ดาวน์โหลดไฟล์ส่วนขยาย Viewing Party ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}