RokuKast

A Chrome extension to stream web videos to Roku devices.

RokuKast क्या है?

RokuKast Dan Greuel द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension to stream web videos to Roku devices."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में RokuKast एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम RokuKast RokuKast
ID bkcaoipeckgolimcehafhdmcegipapnm
आधिकारिक URL https://chromewebstore.google.com/detail/rokukast/bkcaoipeckgolimcehafhdmcegipapnm
विवरण A Chrome extension to stream web videos to Roku devices.
फ़ाइल का आकार 171 KB
स्थापना संख्या 9,277
वर्तमान संस्करण 0.0.2
अंतिम अपडेट 2019-11-13
प्रकाशन तिथि 2019-11-13
रेटिंग 3.62/5 कुल 42 रेटिंग्स
डेवलपर Dan Greuel
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/dgreuel/RokuKast
सहायता पृष्ठ URL https://github.com/dgreuel/RokuKast/issues
समर्थित भाषाएँ 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:\/\/*\/*"
    ]
}