Keyboard Controller

Adds a custom controller to the Gamepad API list that reacts to keyboard inputs.

Τι είναι το Keyboard Controller;

Το Keyboard Controller είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον BFriedrichs, και η κύρια λειτουργία του είναι "Adds a custom controller to the Gamepad API list that reacts to keyboard inputs.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Keyboard Controller

Λήψη αρχείων επέκτασης Keyboard Controller σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        The Gamepad API does not react to keyboard inputs. This extension hacks a binding into the getGamepads() function so that you can use the keyboard for testing.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Keyboard Controller Keyboard Controller
ID gejfopihcilhjkeibfhmggglpabfklhd
Επίσημο URL https://chrome.google.com/webstore/detail/keyboard-controller/gejfopihcilhjkeibfhmggglpabfklhd
Περιγραφή Adds a custom controller to the Gamepad API list that reacts to keyboard inputs.
Μέγεθος Αρχείου 20.84 KB
Αριθμός Εγκαταστάσεων 322
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2019-07-23
Ημερομηνία Δημοσίευσης 2019-07-20
Αξιολόγηση 2.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής BFriedrichs
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/BFriedrichs/keyboard-controller-extension
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/BFriedrichs/keyboard-controller-extension
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Keyboard Controller",
    "version": "1.0",
    "description": "Adds a custom controller to the Gamepad API list that reacts to keyboard inputs.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                ""
            ],
            "js": [
                "hook.js"
            ]
        }
    ],
    "icons": {
        "128": "images\/icon128.png",
        "48": "images\/icon48.png",
        "16": "images\/icon16.png"
    },
    "options_page": "options.html",
    "manifest_version": 2
}