Streaming Party

Sync prime, hotstar and netflix videos with friends

什么是Streaming Party?

Streaming Party是由https://streaming-party-007.herokuapp.com开发的Chrome扩展程序,该扩展的主要功能是“Sync prime, hotstar and netflix videos with friends”。

扩展截图

screenshot
screenshot

下载Streaming Party扩展crx文件

下载Streaming Party扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Now sync your favourite tv-shows and movies from platforms like Netflix, Amazon Prime Video, Youtube etc. with family and friends for free!
5 easy steps for a synchronized viewing experience
1. Choose any video on the supported platform
2. Launch the extension and create a room
3. Share the room name
4. Ask friends or family to open the same video and join the room
5. Enjoy!                    

扩展基本信息

名称 Streaming Party Streaming Party
ID lbecgceillbkdjaodjngcigomgfdimgk
官方URL https://chrome.google.com/webstore/detail/streaming-party/lbecgceillbkdjaodjngcigomgfdimgk
简介 Sync prime, hotstar and netflix videos with friends
文件大小 287 KB
安装次数 1,000
当前版本 1.0.4
更新时间 2020-10-01
上架时间 2020-06-03
评分 1.00/5 共7次评分
开发者 https://streaming-party-007.herokuapp.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://streaming-party-007.herokuapp.com/
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Streaming Party",
    "version": "1.0.4",
    "description": "Sync prime, hotstar and netflix videos with friends",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "page": "index.html#\/event-page"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.primevideo.com\/*"
            ],
            "js": [
                "content-script\/content-prime.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.hotstar.com\/*"
            ],
            "js": [
                "content-script\/content-hotstar.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.netflix.com\/*"
            ],
            "js": [
                "content-script\/content-netflix.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content-script\/content-youtube.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "19": "icon.png",
            "38": "icon.png"
        },
        "default_title": "Open popup!",
        "default_popup": "index.html#\/popup"
    },
    "content_security_policy": "script-src 'self' https:\/\/streaming-party-007.herokuapp.com\/ https:\/\/www.googletagmanager.com\/ https:\/\/ssl.google-analytics.com\/ga.js; object-src 'self'",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    }
}