RokuKast

A Chrome extension to stream web videos to Roku devices.

What is RokuKast?

RokuKast is a Chrome extension developed by Dan Greuel, and its main feature is "A Chrome extension to stream web videos to Roku devices.".

Extension Screenshots

screenshot

Download RokuKast Extension CRX File

Download RokuKast extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name RokuKast RokuKast
ID bkcaoipeckgolimcehafhdmcegipapnm
Official URL https://chromewebstore.google.com/detail/rokukast/bkcaoipeckgolimcehafhdmcegipapnm
Description A Chrome extension to stream web videos to Roku devices.
File Size 171 KB
Installation Count 9,277
Current Version 0.0.2
Last Updated 2019-11-13
Publish Date 2019-11-13
Rating 3.62/5 Total 42 Ratings
Developer Dan Greuel
Email [email protected]
Payment Type free
Extension Website https://github.com/dgreuel/RokuKast
Help Page URL https://github.com/dgreuel/RokuKast/issues
Supported Languages 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:\/\/*\/*"
    ]
}