RokuKast

A Chrome extension to stream web videos to Roku devices.

什麼是RokuKast?

RokuKast是由Dan Greuel開發的Chrome擴展程式,該擴展的主要功能是“A Chrome extension to stream web videos to Roku devices.”。

擴展截圖

screenshot

下載RokuKast擴展crx文件

下載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
官方網址 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:\/\/*\/*"
    ]
}