Server Selector for Xbox Cloud Gaming
A browser extension to select the server region and IP version for Xbox Cloud Gaming
Vad är Server Selector for Xbox Cloud Gaming?
Server Selector for Xbox Cloud Gaming är en Chrome-tillägg utvecklad av n-thumann, och dess huvudfunktion är "A browser extension to select the server region and IP version for Xbox Cloud Gaming".
Tilläggsskärmbilder
Ladda ner Server Selector for Xbox Cloud Gaming-förlängningens CRX-fil
Ladda ner Server Selector for Xbox Cloud Gaming-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Server Selector for Xbox Cloud Gaming |
ID | lanknfgmjkocejapddeibabjpdenkpnn |
Officiell webbadress | https://chromewebstore.google.com/detail/server-selector-for-xbox/lanknfgmjkocejapddeibabjpdenkpnn |
Beskrivning | A browser extension to select the server region and IP version for Xbox Cloud Gaming |
Filstorlek | 9.38 KB |
Antal Installationer | 7,099 |
Aktuell Version | 1.1.0 |
Senast Uppdaterad | 2023-07-31 |
Publiceringsdatum | 2023-04-20 |
Betyg | 5.00/5 Totalt 12 Betyg |
Utvecklare | n-thumann |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/n-thumann/xbox-cloud-server-selector |
Hjälpsida URL | https://github.com/n-thumann/xbox-cloud-server-selector/issues |
Stödda Språk | 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" } ] } |