Netflix Navigator

Navigate Netflix with your keyboard or game controller

Netflix Navigator क्या है?

Netflix Navigator Chris Heald द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Navigate Netflix with your keyboard or game controller"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Netflix Navigator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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/                    

एक्सटेंशन की मूल जानकारी

नाम Netflix Navigator Netflix Navigator
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"
    }
}