Amazon Party

Watch amazon prime videos in sync with friends and family

Amazon Partyとは何ですか?

Amazon PartyはPrime Extensionsによって開発されたChromeの拡張機能で、その主な機能は「Watch amazon prime videos in sync with friends and family」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

Amazon Party拡張機能のCRXファイルをダウンロード

Amazon Party拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Transform your Amazon Prime viewing into a shared experience with our Chrome extension. Watch Amazon Prime content simultaneously with friends and family, chat in real-time, and even video chat while you enjoy your favorite shows and movies. Our user-friendly extension is free to use and ensures a secure, synchronized, and immersive watching experience, making it easier than ever to connect with loved ones over your favorite content.                    

拡張機能の基本情報

名前 Amazon Party Amazon Party
ID ddhjjpcddpoiehkakcdijfaidnhplclg
公式URL https://chromewebstore.google.com/detail/amazon-party/ddhjjpcddpoiehkakcdijfaidnhplclg
説明 Watch amazon prime videos in sync with friends and family
ファイルサイズ 1.27 MB
インストール数 21
現在のバージョン 1.2.0
最終更新日 2023-11-18
公開日 2023-10-06
評価 5.00/5 合計 6 レビュー
開発者 Prime Extensions
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.amazonprimeparty.com/
ヘルプページのURL https://www.amazonprimeparty.com/support
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Amazon Party",
    "description": "Watch amazon prime videos in sync with friends and family",
    "version": "1.2.0",
    "manifest_version": 3,
    "icons": {
        "16": "prime16x16.png",
        "48": "prime48x48.png",
        "128": "prime128x128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Amazon Party",
        "default_icon": "prime16x16.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/redirect.amazonprimeparty.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.primevideo.com\/*"
            ],
            "js": [
                "amazonPrime.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "resources": [
                "netflix.js",
                "avatar1.svg",
                "avatar2.svg",
                "avatar3.svg",
                "avatar4.svg"
            ]
        }
    ]
}