Server Selector for Xbox Cloud Gaming

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

Cos'è Server Selector for Xbox Cloud Gaming?

Server Selector for Xbox Cloud Gaming è un'estensione di Chrome sviluppata da n-thumann, e la sua funzione principale è "A browser extension to select the server region and IP version for Xbox Cloud Gaming".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Server Selector for Xbox Cloud Gaming

Scarica i file di estensione Server Selector for Xbox Cloud Gaming in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Server Selector for Xbox Cloud Gaming Server Selector for Xbox Cloud Gaming
ID lanknfgmjkocejapddeibabjpdenkpnn
URL Ufficiale https://chromewebstore.google.com/detail/server-selector-for-xbox/lanknfgmjkocejapddeibabjpdenkpnn
Descrizione A browser extension to select the server region and IP version for Xbox Cloud Gaming
Dimensione del File 9.38 KB
Conteggio Installazioni 7,099
Versione Corrente 1.1.0
Ultimo Aggiornamento 2023-07-31
Data di Pubblicazione 2023-04-20
Valutazione 5.00/5 Totale 12 Valutazioni
Sviluppatore n-thumann
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/n-thumann/xbox-cloud-server-selector
URL della Pagina di Aiuto https://github.com/n-thumann/xbox-cloud-server-selector/issues
Lingue Supportate 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"
        }
    ]
}