Metastream Remote

Watch streaming media with friends.

Cos'è Metastream Remote?

Metastream Remote è un'estensione di Chrome sviluppata da https://getmetastream.com, e la sua funzione principale è "Watch streaming media with friends.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Metastream Remote

Scarica i file di estensione Metastream Remote in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Metastream Remote Metastream Remote
ID fakegmdomhmegokfomgmkbopjibonfcp
URL Ufficiale https://chromewebstore.google.com/detail/metastream-remote/fakegmdomhmegokfomgmkbopjibonfcp
Descrizione Watch streaming media with friends.
Dimensione del File 50.31 KB
Conteggio Installazioni 361,592
Versione Corrente 0.6.0
Ultimo Aggiornamento 2020-07-25
Data di Pubblicazione 2020-07-01
Valutazione 3.72/5 Totale 72 Valutazioni
Sviluppatore https://getmetastream.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://getmetastream.com
URL della Pagina di Aiuto https://github.com/samuelmaddock/metastream/wiki/FAQ
URL della Pagina della Politica sulla Privacy https://getmetastream.com/privacy-policy.html
Lingue Supportate 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"
    ]
}