RokuKast

A Chrome extension to stream web videos to Roku devices.

Что такое RokuKast?

RokuKast - это расширение Chrome, разработанное Dan Greuel, и его основная функция - "A Chrome extension to stream web videos to Roku devices.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения RokuKast

Скачайте файлы расширений RokuKast в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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:\/\/*\/*"
    ]
}