RokuKast
A Chrome extension to stream web videos to Roku devices.
Apa itu RokuKast?
RokuKast adalah ekstensi Chrome yang dikembangkan oleh Dan Greuel, dan fitur utamanya adalah "A Chrome extension to stream web videos to Roku devices.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi RokuKast
Unduh file ekstensi RokuKast dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
RokuKast detects videos in your browser and lets you either download them or stream them to your Roku device.
Informasi Dasar Ekstensi
Nama | RokuKast |
ID | bkcaoipeckgolimcehafhdmcegipapnm |
URL Resmi | https://chromewebstore.google.com/detail/rokukast/bkcaoipeckgolimcehafhdmcegipapnm |
Deskripsi | A Chrome extension to stream web videos to Roku devices. |
Ukuran File | 171 KB |
Jumlah Instalasi | 9,277 |
Versi Saat Ini | 0.0.2 |
Terakhir Diperbarui | 2019-11-13 |
Tanggal Publikasi | 2019-11-13 |
Penilaian | 3.62/5 Total 42 Penilaian |
Pengembang | Dan Greuel |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/dgreuel/RokuKast |
URL Halaman Bantuan | https://github.com/dgreuel/RokuKast/issues |
Bahasa yang Didukung | 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:\/\/*\/*" ] } |