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.
拡張機能の基本情報
名前 | 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 |
Eメール | [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:\/\/*\/*" ] } |