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.”。
扩展截图
下载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. 扩展基本信息
| 名称 | |
| 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:\/\/*\/*"
]
} | |