Metastream Remote

Watch streaming media with friends.

Metastream Remoteとは何ですか?

Metastream Remoteはhttps://getmetastream.comによって開発されたChromeの拡張機能で、その主な機能は「Watch streaming media with friends.」です。

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

screenshot

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

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

拡張機能の使用方法

                        Allows Metastream to control media for synchronizing in a session.

# EXTENSION PERMISSIONS

Metastream Remote requires permissions to "Read and change all your data on the websites you visit."

The Metastream application needs this to embed any website into the app.getmetastream.com website and to synchronize media. This functionality is limited to browser tabs actively using the the app.getmetastream.com website.

For auditing purposes, the source code of this extension is available at
https://github.com/samuelmaddock/metastream/tree/master/packages/metastream-remote-extension                    

拡張機能の基本情報

名前 Metastream Remote Metastream Remote
ID fakegmdomhmegokfomgmkbopjibonfcp
公式URL https://chromewebstore.google.com/detail/metastream-remote/fakegmdomhmegokfomgmkbopjibonfcp
説明 Watch streaming media with friends.
ファイルサイズ 50.31 KB
インストール数 361,592
現在のバージョン 0.6.0
最終更新日 2020-07-25
公開日 2020-07-01
評価 3.72/5 合計 72 レビュー
開発者 https://getmetastream.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://getmetastream.com
ヘルプページのURL https://github.com/samuelmaddock/metastream/wiki/FAQ
プライバシーポリシーページのURL https://getmetastream.com/privacy-policy.html
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Metastream Remote",
    "short_name": "Metastream",
    "version": "0.6.0",
    "description": "Watch streaming media with friends.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.getmetastream.com\/*",
                "http:\/\/local.getmetastream.com\/*",
                "http:\/\/localhost:8080\/*"
            ],
            "js": [
                "app.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "first.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/app.getmetastream.com\/*",
            "http:\/\/local.getmetastream.com\/*",
            "http:\/\/localhost:8080\/*"
        ]
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "webNavigation",
        "webRequest",
        "webRequestBlocking",
        "contextMenus",
        ""
    ],
    "optional_permissions": [
        "contentSettings"
    ]
}