RokuKast

A Chrome extension to stream web videos to Roku devices.

Co to jest RokuKast?

RokuKast to rozszerzenie Chrome opracowane przez Dan Greuel, a jego główną funkcją jest „A Chrome extension to stream web videos to Roku devices.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia RokuKast

Pobierz pliki rozszerzeń RokuKast w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa RokuKast RokuKast
ID bkcaoipeckgolimcehafhdmcegipapnm
Oficjalny URL https://chromewebstore.google.com/detail/rokukast/bkcaoipeckgolimcehafhdmcegipapnm
Opis A Chrome extension to stream web videos to Roku devices.
Rozmiar pliku 171 KB
Liczba instalacji 9,277
Aktualna Wersja 0.0.2
Ostatnia Aktualizacja 2019-11-13
Data Publikacji 2019-11-13
Ocena 3.62/5 Łącznie 42 Oceny
Deweloper Dan Greuel
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/dgreuel/RokuKast
Adres URL Strony Pomocy https://github.com/dgreuel/RokuKast/issues
Obsługiwane Języki 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:\/\/*\/*"
    ]
}