Metastream Remote

Watch streaming media with friends.

Metastream Remote란 무엇입니까?

Metastream Remote은(는) https://getmetastream.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Watch streaming media with friends."입니다.

확장 프로그램 스크린샷

screenshot

Metastream Remote 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    ]
}