Metastream Remote

Watch streaming media with friends.

Co je Metastream Remote?

Metastream Remote je rozšíření Chrome vyvinuté https://getmetastream.com, a jeho hlavní funkcí je „Watch streaming media with friends.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Metastream Remote

Stáhněte si soubory rozšíření Metastream Remote ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Metastream Remote Metastream Remote
ID fakegmdomhmegokfomgmkbopjibonfcp
Oficiální URL https://chromewebstore.google.com/detail/metastream-remote/fakegmdomhmegokfomgmkbopjibonfcp
Popis Watch streaming media with friends.
Velikost souboru 50.31 KB
Počet instalací 361,592
Aktuální Verze 0.6.0
Poslední Aktualizace 2020-07-25
Datum Vydání 2020-07-01
Hodnocení 3.72/5 Celkem 72 Hodnocení
Vývojář https://getmetastream.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://getmetastream.com
URL Stránky Nápovědy https://github.com/samuelmaddock/metastream/wiki/FAQ
URL Stránky Zásad Ochrany Soukromí https://getmetastream.com/privacy-policy.html
Podporované Jazyky 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"
    ]
}