Server Selector for Xbox Cloud Gaming

A browser extension to select the server region and IP version for Xbox Cloud Gaming

Wat is Server Selector for Xbox Cloud Gaming?

Server Selector for Xbox Cloud Gaming is een Chrome-extensie ontwikkeld door n-thumann, en de belangrijkste functie is "A browser extension to select the server region and IP version for Xbox Cloud Gaming".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Server Selector for Xbox Cloud Gaming

Download Server Selector for Xbox Cloud Gaming-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Usage:
Select the region and IP version as desired, then quit any active Xbox Cloud Gaming session and reload Xbox Cloud Gaming to apply the changes.

Source Code: https://github.com/n-thumann/xbox-cloud-server-selector
Disclaimer: This project is not affiliated with Xbox in any way. Microsoft and Xbox (name and logo) are trademarks of the Microsoft group of companies.                    

Basisinformatie over de Extensie

Naam Server Selector for Xbox Cloud Gaming Server Selector for Xbox Cloud Gaming
ID lanknfgmjkocejapddeibabjpdenkpnn
Officiële URL https://chromewebstore.google.com/detail/server-selector-for-xbox/lanknfgmjkocejapddeibabjpdenkpnn
Beschrijving A browser extension to select the server region and IP version for Xbox Cloud Gaming
Bestandsgrootte 9.38 KB
Aantal Installaties 7,099
Huidige Versie 1.1.0
Laatst Bijgewerkt 2023-07-31
Publicatiedatum 2023-04-20
Beoordeling 5.00/5 Totaal 12 Beoordelingen
Ontwikkelaar n-thumann
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/n-thumann/xbox-cloud-server-selector
Help Pagina-URL https://github.com/n-thumann/xbox-cloud-server-selector/issues
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Server Selector for Xbox Cloud Gaming",
    "version": "1.1.0",
    "description": "A browser extension to select the server region and IP version for Xbox Cloud Gaming",
    "icons": {
        "128": "icon.png"
    },
    "homepage_url": "https:\/\/github.com\/n-thumann\/xbox-cloud-server-selector",
    "minimum_chrome_version": "111",
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/www.xbox.com\/*\/play*"
            ],
            "run_at": "document_start",
            "world": "MAIN"
        },
        {
            "js": [
                "bridge.js"
            ],
            "matches": [
                "https:\/\/www.xbox.com\/*\/play*"
            ],
            "run_at": "document_start"
        }
    ]
}