Netflix Controller Support
Allows one to control a netflix watch page with an xbox (only tested) controller.
¿Qué es Netflix Controller Support?
Netflix Controller Support es una extensión de Chrome desarrollada por http://aubronwood.com, y su función principal es "Allows one to control a netflix watch page with an xbox (only tested) controller.".
Descargar Archivo CRX de la Extensión Netflix Controller Support
Descarga archivos de extensión Netflix Controller Support en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
This extension is intended to be used with NetfliXBMC - An XBMC plugin that opens chrome in kiosk mode on netflix watch pages as a method of playing netflix via XBMC. This extension allows you to use an xbox 360 controller with that page, including support for seeking, volume up/down, and closing chrome. Please report any bugs to https://github.com/Aubron/Netflix-Controller
Información Básica de la Extensión
Nombre | |
ID | flakmgbknagcohphpoogebajjbmlmngh |
URL Oficial | https://chrome.google.com/webstore/detail/netflix-controller-suppor/flakmgbknagcohphpoogebajjbmlmngh |
Descripción | Allows one to control a netflix watch page with an xbox (only tested) controller. |
Tamaño del Archivo | 46.4 KB |
Cantidad de Instalaciones | 157 |
Versión Actual | 0.1 |
Última Actualización | 2014-10-13 |
Fecha de Publicación | 2014-10-13 |
Calificación | 2.80/5 Total de 10 Calificaciones |
Desarrollador | http://aubronwood.com |
Tipo de Pago | free |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "exclude_globs": [], "exclude_matches": [], "include_globs": [], "js": [ "jquery.js", "script.js" ], "matches": [ "http:\/\/www.netflix.com\/WiPlayer*" ], "run_at": "document_idle" } ], "icons": { "48": "netflix48.png", "128": "netflix128.png" }, "description": "Allows one to control a netflix watch page with an xbox (only tested) controller.", "name": "Netflix Controller Support", "version": "0.1", "permissions": [ "tabs" ] } |