Netflix Controller Support
Allows one to control a netflix watch page with an xbox (only tested) controller.
什么是Netflix Controller Support?
Netflix Controller Support是由http://aubronwood.com开发的Chrome扩展程序,该扩展的主要功能是“Allows one to control a netflix watch page with an xbox (only tested) controller.”。
下载Netflix Controller Support扩展crx文件
下载Netflix Controller Support扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | |
ID | flakmgbknagcohphpoogebajjbmlmngh |
官方URL | https://chrome.google.com/webstore/detail/netflix-controller-suppor/flakmgbknagcohphpoogebajjbmlmngh |
简介 | Allows one to control a netflix watch page with an xbox (only tested) controller. |
文件大小 | 46.4 KB |
安装次数 | 157 |
当前版本 | 0.1 |
更新时间 | 2014-10-13 |
上架时间 | 2014-10-13 |
评分 | 2.80/5 共10次评分 |
开发者 | http://aubronwood.com |
付费类型 | free |
支持的语言 | 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" ] } |