Metastream Remote

Watch streaming media with friends.

O que é Metastream Remote?

Metastream Remote é uma extensão do Chrome desenvolvida por https://getmetastream.com, e sua principal característica é "Watch streaming media with friends.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Metastream Remote

Baixe arquivos de extensão Metastream Remote no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Metastream Remote Metastream Remote
ID fakegmdomhmegokfomgmkbopjibonfcp
URL Oficial https://chromewebstore.google.com/detail/metastream-remote/fakegmdomhmegokfomgmkbopjibonfcp
Descrição Watch streaming media with friends.
Tamanho do Arquivo 50.31 KB
Contagem de Instalações 361,592
Versão Atual 0.6.0
Última Atualização 2020-07-25
Data de Publicação 2020-07-01
Classificação 3.72/5 Total de 72 Avaliações
Desenvolvedor https://getmetastream.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://getmetastream.com
URL da Página de Ajuda https://github.com/samuelmaddock/metastream/wiki/FAQ
URL da Página de Política de Privacidade https://getmetastream.com/privacy-policy.html
Idiomas Suportados 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"
    ]
}