Keyboard Controller

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

Keyboard Controller क्या है?

Keyboard Controller BFriedrichs द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a custom controller to the Gamepad API list that reacts to keyboard inputs."।

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

screenshot

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

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

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

                        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
}