RokuKast
A Chrome extension to stream web videos to Roku devices.
RokuKast là gì?
RokuKast là một tiện ích mở rộng Chrome được phát triển bởi Dan Greuel, và tính năng chính của nó là "A Chrome extension to stream web videos to Roku devices.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng RokuKast
Tải xuống các tệp mở rộng RokuKast dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
RokuKast detects videos in your browser and lets you either download them or stream them to your Roku device.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | RokuKast |
ID | bkcaoipeckgolimcehafhdmcegipapnm |
URL Chính Thức | https://chromewebstore.google.com/detail/rokukast/bkcaoipeckgolimcehafhdmcegipapnm |
Mô tả | A Chrome extension to stream web videos to Roku devices. |
Kích Thước Tệp | 171 KB |
Số Lần Cài Đặt | 9,277 |
Phiên Bản Hiện Tại | 0.0.2 |
Cập Nhật Lần Cuối | 2019-11-13 |
Ngày Phát Hành | 2019-11-13 |
Đánh Giá | 3.62/5 Tổng số 42 Đánh Giá |
Nhà Phát Triển | Dan Greuel |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/dgreuel/RokuKast |
URL Trang Trợ Giúp | https://github.com/dgreuel/RokuKast/issues |
Ngôn Ngữ Được Hỗ Trợ | 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:\/\/*\/*" ] } |