Server Selector for Xbox Cloud Gaming
A browser extension to select the server region and IP version for Xbox Cloud Gaming
Qu'est-ce que Server Selector for Xbox Cloud Gaming ?
Server Selector for Xbox Cloud Gaming est une extension Chrome développée par n-thumann, et sa fonction principale est "A browser extension to select the server region and IP version for Xbox Cloud Gaming".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Server Selector for Xbox Cloud Gaming
Téléchargez les fichiers d'extension Server Selector for Xbox Cloud Gaming au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Server Selector for Xbox Cloud Gaming |
ID | lanknfgmjkocejapddeibabjpdenkpnn |
URL Officiel | 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 |
Taille du Fichier | 9.38 KB |
Nombre d'Installations | 7,099 |
Version Actuelle | 1.1.0 |
Dernière Mise à Jour | 2023-07-31 |
Date de Publication | 2023-04-20 |
Évaluation | 5.00/5 Total 12 Évaluations |
Développeur | n-thumann |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/n-thumann/xbox-cloud-server-selector |
URL de la Page d'Aide | https://github.com/n-thumann/xbox-cloud-server-selector/issues |
Langues Prises en Charge | 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" } ] } |