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
官方網址 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"
    }
}