Joyride

Map button presses from the Javascript Gamepad API to KeyboardEvents.

Was ist Joyride?

Joyride ist eine Chrome-Erweiterung, die von rowan_m entwickelt wurde, und ihr Hauptmerkmal ist "Map button presses from the Javascript Gamepad API to KeyboardEvents.".

Erweiterungsscreenshots

screenshot

Joyride-Erweiterungs-CRX-Datei herunterladen

Laden Sie Joyride-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        ⚠️Early alpha - this is a hack to solve a problem for me, but maybe we share the same problem!⚠️
This maps buttons presses on a gamepad to simulated keyboard events.
🎮 ➡️ ⌨️
At the moment, it just maps the left / right buttons on Nintendo Switch Joy-Cons to the left and right arrow keys. This means you can use the Joy-Con to control a presentation. That's a good thing.                    

Grundlegende Informationen zur Erweiterung

Name Joyride Joyride
ID hejncbodigbbhdfhkapkfdhhjflafdff
Offizielle URL https://chrome.google.com/webstore/detail/joyride/hejncbodigbbhdfhkapkfdhhjflafdff
Beschreibung Map button presses from the Javascript Gamepad API to KeyboardEvents.
Dateigröße 123 KB
Installationsanzahl 111
Aktuelle Version 1.5
Letztes Update 2018-05-29
Veröffentlichungsdatum 2018-05-29
Bewertung 3.20/5 Insgesamt 5 Bewertungen
Entwickler rowan_m
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/rowan-m/joyride
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Joyride",
    "version": "1.5",
    "description": "Map button presses from the Javascript Gamepad API to KeyboardEvents.",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "\/src\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Map connected gamepads on this tab",
        "default_icon": {
            "16": "\/img\/joyride-icon-16.png",
            "32": "\/img\/joyride-icon-32.png",
            "48": "\/img\/joyride-icon-48.png",
            "128": "\/img\/joyride-icon-128.png"
        }
    },
    "icons": {
        "16": "\/img\/joyride-icon-16.png",
        "32": "\/img\/joyride-icon-32.png",
        "48": "\/img\/joyride-icon-48.png",
        "128": "\/img\/joyride-icon-128.png"
    },
    "manifest_version": 2
}