Netflix Navigator

Navigate Netflix with your keyboard or game controller

What is Netflix Navigator?

Netflix Navigator is a Chrome extension developed by Chris Heald, and its main feature is "Navigate Netflix with your keyboard or game controller".

Extension Screenshots

screenshot

Download Netflix Navigator Extension CRX File

Download Netflix Navigator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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/                    

Extension Basic Information

Name Netflix Navigator Netflix Navigator
ID baifcdmbdpacahdlfeamhgijijeflmlh
Official URL https://chromewebstore.google.com/detail/netflix-navigator/baifcdmbdpacahdlfeamhgijijeflmlh
Description Navigate Netflix with your keyboard or game controller
File Size 110 KB
Installation Count 135
Current Version 1.0.1
Last Updated 2015-01-27
Publish Date 2015-01-26
Rating 2.44/5 Total 9 Ratings
Developer Chris Heald
Payment Type free
Extension Website https://github.com/cheald/NetflixNavigator/
Supported Languages 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"
    }
}