Netflix Navigator
Navigate Netflix with your keyboard or game controller
Vad är Netflix Navigator?
Netflix Navigator är en Chrome-tillägg utvecklad av Chris Heald, och dess huvudfunktion är "Navigate Netflix with your keyboard or game controller".
Tilläggsskärmbilder
Ladda ner Netflix Navigator-förlängningens CRX-fil
Ladda ner Netflix Navigator-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
                        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/                     Grundläggande Information om Tillägg
| Namn |  | 
| ID | baifcdmbdpacahdlfeamhgijijeflmlh | 
| Officiell webbadress | https://chromewebstore.google.com/detail/netflix-navigator/baifcdmbdpacahdlfeamhgijijeflmlh | 
| Beskrivning | Navigate Netflix with your keyboard or game controller | 
| Filstorlek | 110 KB | 
| Antal Installationer | 135 | 
| Aktuell Version | 1.0.1 | 
| Senast Uppdaterad | 2015-01-27 | 
| Publiceringsdatum | 2015-01-26 | 
| Betyg | 2.44/5 Totalt 9 Betyg | 
| Utvecklare | Chris Heald | 
| Betalningssätt | free | 
| Tilläggswebbplats | https://github.com/cheald/NetflixNavigator/ | 
| Stödda Språk | 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"
    }
} | |