Metastream Remote

Watch streaming media with friends.

Metastream Remote là gì?

Metastream Remote là một tiện ích mở rộng Chrome được phát triển bởi https://getmetastream.com, và tính năng chính của nó là "Watch streaming media with friends.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Metastream Remote

Tải xuống các tệp mở rộng Metastream Remote dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Metastream Remote Metastream Remote
ID fakegmdomhmegokfomgmkbopjibonfcp
URL Chính Thức https://chromewebstore.google.com/detail/metastream-remote/fakegmdomhmegokfomgmkbopjibonfcp
Mô tả Watch streaming media with friends.
Kích Thước Tệp 50.31 KB
Số Lần Cài Đặt 361,592
Phiên Bản Hiện Tại 0.6.0
Cập Nhật Lần Cuối 2020-07-25
Ngày Phát Hành 2020-07-01
Đánh Giá 3.72/5 Tổng số 72 Đánh Giá
Nhà Phát Triển https://getmetastream.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://getmetastream.com
URL Trang Trợ Giúp https://github.com/samuelmaddock/metastream/wiki/FAQ
URL Trang Chính Sách Bảo Mật https://getmetastream.com/privacy-policy.html
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}