Netflix Navigator
Navigate Netflix with your keyboard or game controller
什么是Netflix Navigator?
Netflix Navigator是由Chris Heald开发的Chrome扩展程序,该扩展的主要功能是“Navigate Netflix with your keyboard or game controller”。
扩展截图
下载Netflix Navigator扩展crx文件
下载Netflix Navigator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension that uses the HTML5 Gamepad API to provide game controller (and keyboard) navigator and control for Netflix. Chrome 40+ is required. The primary use case is for integration with an HTPC (ie, Kodi with ChromeLauncher).
Currently supported features:
* Profile selection
* Movie navigation with customized movie info pane
* Playback control (pause, mute, seek/scrub, volume, next episode)
This has only been tested with XBox 360 controllers so far.
Source and more info is available at https://github.com/cheald/NetflixNavigator/ 扩展基本信息
| 名称 | |
| ID | baifcdmbdpacahdlfeamhgijijeflmlh |
| 官方URL | https://chromewebstore.google.com/detail/netflix-navigator/baifcdmbdpacahdlfeamhgijijeflmlh |
| 简介 | Navigate Netflix with your keyboard or game controller |
| 文件大小 | 110 KB |
| 安装次数 | 135 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2015-01-27 |
| 上架时间 | 2015-01-26 |
| 评分 | 2.44/5 共9次评分 |
| 开发者 | Chris Heald |
| 付费类型 | free |
| 扩展官网 | https://github.com/cheald/NetflixNavigator/ |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Netflix Navigator",
"short_name": "NetflixNav",
"description": "Navigate Netflix with your keyboard or game controller",
"version": "1.0.1",
"permissions": [
"*:\/\/www.netflix.com\/*"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/www.netflix.com\/*"
],
"css": [
"driver.css"
],
"js": [
"jquery.js",
"jquery.scrollTo.js",
"driver.js"
]
}
],
"web_accessible_resources": [
"assets\/Xbox360_Button_A.png",
"controller.js"
],
"icons": {
"48": "assets\/48.png",
"128": "assets\/128.png"
}
} | |