Server Selector for Xbox Cloud Gaming
A browser extension to select the server region and IP version for Xbox Cloud Gaming
What is Server Selector for Xbox Cloud Gaming?
Server Selector for Xbox Cloud Gaming is a Chrome extension developed by n-thumann, and its main feature is "A browser extension to select the server region and IP version for Xbox Cloud Gaming".
Extension Screenshots
Download Server Selector for Xbox Cloud Gaming Extension CRX File
Download Server Selector for Xbox Cloud Gaming extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Server Selector for Xbox Cloud Gaming |
ID | lanknfgmjkocejapddeibabjpdenkpnn |
Official URL | https://chromewebstore.google.com/detail/server-selector-for-xbox/lanknfgmjkocejapddeibabjpdenkpnn |
Description | A browser extension to select the server region and IP version for Xbox Cloud Gaming |
File Size | 9.38 KB |
Installation Count | 7,099 |
Current Version | 1.1.0 |
Last Updated | 2023-07-31 |
Publish Date | 2023-04-20 |
Rating | 5.00/5 Total 12 Ratings |
Developer | n-thumann |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/n-thumann/xbox-cloud-server-selector |
Help Page URL | https://github.com/n-thumann/xbox-cloud-server-selector/issues |
Supported Languages | 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" } ] } |