Server Selector for Xbox Cloud Gaming

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

Co je Server Selector for Xbox Cloud Gaming?

Server Selector for Xbox Cloud Gaming je rozšíření Chrome vyvinuté n-thumann, a jeho hlavní funkcí je „A browser extension to select the server region and IP version for Xbox Cloud Gaming“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Server Selector for Xbox Cloud Gaming

Stáhněte si soubory rozšíření Server Selector for Xbox Cloud Gaming ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Server Selector for Xbox Cloud Gaming Server Selector for Xbox Cloud Gaming
ID lanknfgmjkocejapddeibabjpdenkpnn
Oficiální URL https://chromewebstore.google.com/detail/server-selector-for-xbox/lanknfgmjkocejapddeibabjpdenkpnn
Popis A browser extension to select the server region and IP version for Xbox Cloud Gaming
Velikost souboru 9.38 KB
Počet instalací 7,099
Aktuální Verze 1.1.0
Poslední Aktualizace 2023-07-31
Datum Vydání 2023-04-20
Hodnocení 5.00/5 Celkem 12 Hodnocení
Vývojář n-thumann
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/n-thumann/xbox-cloud-server-selector
URL Stránky Nápovědy https://github.com/n-thumann/xbox-cloud-server-selector/issues
Podporované Jazyky 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"
        }
    ]
}