Keyboard & Mouse for Xbox xCloud

Play Xbox Cloud Gaming (Project xCloud) with a keyboard and mouse.

Was ist Keyboard & Mouse for Xbox xCloud?

Keyboard & Mouse for Xbox xCloud ist eine Chrome-Erweiterung, die von https://modernkit.one entwickelt wurde, und ihr Hauptmerkmal ist "Play Xbox Cloud Gaming (Project xCloud) with a keyboard and mouse.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Keyboard & Mouse for Xbox xCloud-Erweiterungs-CRX-Datei herunterladen

Laden Sie Keyboard & Mouse for Xbox xCloud-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

                        A browser extension to control *any* game on Xbox Cloud Gaming (Project xCloud) with a keyboard and mouse.

✅ Works for every game

- Every game on xCloud is supported - regardless of whether or not it natively supports mouse and keyboard

✅ Quick enable/disable

- Easily disable the mouse/keyboard override and switch back to your controller whenever you feel like it with one click of the toggle

✅ Configurable sensitivity

- Control how sensitive you want mouse movement to be on a per-profile basis (you may also need to tweak the control sensitivity in the game options as well for optimal use)

✅ Multiple presets

- Manage multiple preset and custom configurations (e.g. create separate presets for "fighting games", "shooter", etc.)
- Bind multiple keyboard keys or mouse buttons to any controller button

✅ Respects your privacy

- No keyboard/mouse data is ever recorded or sent anywhere from your computer
- The extension only runs on xCloud; not other sites you visit

You may need to configure the sensitivity in the in-game settings as well (and it is recommended to turn off any "deadzone" options in the game).

If you have a feature request or found a bug to report, please contact us via email: [email protected]

Try the extension for free, no card required. If you like it, play anytime with a single payment (no subscription). Use your upgraded account on up to 5 devices.

This extension works by acting as a "virtual" controller. It listens for keyboard presses and (optionally) mouse movement and translates these into what appear as controller button presses and analog stick movements.

There is no added input delay introduced by this extension - all keyboard/mouse input is instantly translated into virtual controller input immediately by the extension without any extra software or steps.

(NOTE: This is a fan project - it is not affiliated with Microsoft or Xbox in any way. All Microsoft, Xbox logos/icons/trademarks are copyright of their respective owners.)                    

Grundlegende Informationen zur Erweiterung

Name Keyboard & Mouse for Xbox xCloud Keyboard & Mouse for Xbox xCloud
ID nmfedkijhhigaikbadoijiolmjjgoimd
Offizielle URL https://chromewebstore.google.com/detail/keyboard-mouse-for-xbox-x/nmfedkijhhigaikbadoijiolmjjgoimd
Beschreibung Play Xbox Cloud Gaming (Project xCloud) with a keyboard and mouse.
Dateigröße 635 KB
Installationsanzahl 279,006
Aktuelle Version 3.6.1
Letztes Update 2023-11-13
Veröffentlichungsdatum 2021-11-28
Bewertung 2.29/5 Insgesamt 670 Bewertungen
Entwickler https://modernkit.one
E-Mail [email protected]
Zahlungsart in_app
Erweiterungswebsite https://modernkit.one/xcloud-keyboard-mouse/?utm_source=chrome-listing&utm_medium=listing&utm_content=homepage-link
Hilfeseite URL https://modernkit.one/xcloud-keyboard-mouse/support/?utm_source=chrome-listing&utm_medium=listing&utm_content=support-link
URL der Datenschutzrichtlinien-Seite https://modernkit.one/privacy-policy?utm_source=chrome-listing&utm_medium=listing&utm_content=privacy-policy-link
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "3.6.1",
    "name": "Keyboard & Mouse for Xbox xCloud",
    "short_name": "xCloud KB&M",
    "description": "Play Xbox Cloud Gaming (Project xCloud) with a keyboard and mouse.",
    "author": "ModernKit.one",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "action": {
        "default_icon": {
            "16": "icon-16.png",
            "24": "icon-24.png",
            "32": "icon-32.png"
        },
        "default_popup": "popup.html",
        "default_title": "xCloud Keyboard and Mouse"
    },
    "commands": {
        "toggle-on-off": {
            "suggested_key": {
                "default": "Ctrl+Shift+U",
                "mac": "Command+Shift+U"
            },
            "description": "Toggle KBM on\/off"
        },
        "profile-prev": {
            "suggested_key": {
                "default": "Ctrl+Shift+Left",
                "mac": "Command+Shift+Left"
            },
            "description": "Previous keyboard\/mouse profile"
        },
        "profile-next": {
            "suggested_key": {
                "default": "Ctrl+Shift+Right",
                "mac": "Command+Shift+Right"
            },
            "description": "Next keyboard\/mouse profile"
        },
        "show-hide-cheatsheet": {
            "suggested_key": {
                "default": "Ctrl+Shift+I",
                "mac": "Command+Shift+I"
            },
            "description": "Show\/hide cheatsheet overlay"
        }
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/*.xbox.com\/*"
            ],
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/vendor.js",
                "js\/injected.js",
                "css\/*.css",
                "icon-16.png",
                "icon-32.png",
                "images\/*"
            ],
            "matches": [
                "https:\/\/www.xbox.com\/*",
                "https:\/\/modernkit.one\/*"
            ]
        },
        {
            "resources": [
                "js\/content_script_mk1.js"
            ],
            "matches": [
                "https:\/\/modernkit.one\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "host_permissions": [
        "*:\/\/*.xbox.com\/*"
    ],
    "permissions": [
        "storage",
        "scripting"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/modernkit.one\/*"
        ]
    }
}