RokuKast
A Chrome extension to stream web videos to Roku devices.
Wat is RokuKast?
RokuKast is een Chrome-extensie ontwikkeld door Dan Greuel, en de belangrijkste functie is "A Chrome extension to stream web videos to Roku devices.".
Extensie Screenshots
Download het CRX-bestand van de extensie RokuKast
Download RokuKast-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
RokuKast detects videos in your browser and lets you either download them or stream them to your Roku device.
Basisinformatie over de Extensie
Naam | RokuKast |
ID | bkcaoipeckgolimcehafhdmcegipapnm |
Officiële URL | https://chromewebstore.google.com/detail/rokukast/bkcaoipeckgolimcehafhdmcegipapnm |
Beschrijving | A Chrome extension to stream web videos to Roku devices. |
Bestandsgrootte | 171 KB |
Aantal Installaties | 9,277 |
Huidige Versie | 0.0.2 |
Laatst Bijgewerkt | 2019-11-13 |
Publicatiedatum | 2019-11-13 |
Beoordeling | 3.62/5 Totaal 42 Beoordelingen |
Ontwikkelaar | Dan Greuel |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/dgreuel/RokuKast |
Help Pagina-URL | https://github.com/dgreuel/RokuKast/issues |
Ondersteunde Talen | 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:\/\/*\/*" ] } |