RokuKast

A Chrome extension to stream web videos to Roku devices.

Cos'è RokuKast?

RokuKast è un'estensione di Chrome sviluppata da Dan Greuel, e la sua funzione principale è "A Chrome extension to stream web videos to Roku devices.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione RokuKast

Scarica i file di estensione RokuKast 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

                        RokuKast detects videos in your browser and lets you either download them or stream them to your Roku device.                    

Informazioni di Base sull'Estensione

Nome RokuKast RokuKast
ID bkcaoipeckgolimcehafhdmcegipapnm
URL Ufficiale https://chromewebstore.google.com/detail/rokukast/bkcaoipeckgolimcehafhdmcegipapnm
Descrizione A Chrome extension to stream web videos to Roku devices.
Dimensione del File 171 KB
Conteggio Installazioni 9,277
Versione Corrente 0.0.2
Ultimo Aggiornamento 2019-11-13
Data di Pubblicazione 2019-11-13
Valutazione 3.62/5 Totale 42 Valutazioni
Sviluppatore Dan Greuel
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/dgreuel/RokuKast
URL della Pagina di Aiuto https://github.com/dgreuel/RokuKast/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "RokuKast",
    "description": "A Chrome extension to stream web videos to Roku devices.",
    "version": "0.0.2",
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/contentScript.js"
            ]
        }
    ],
    "options_page": "options.html",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "webRequest",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}