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
Eメール [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"
    }
}