Server Selector for Xbox Cloud Gaming
A browser extension to select the server region and IP version for Xbox Cloud Gaming
O que é Server Selector for Xbox Cloud Gaming?
Server Selector for Xbox Cloud Gaming é uma extensão do Chrome desenvolvida por n-thumann, e sua principal característica é "A browser extension to select the server region and IP version for Xbox Cloud Gaming".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Server Selector for Xbox Cloud Gaming
Baixe arquivos de extensão Server Selector for Xbox Cloud Gaming no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Server Selector for Xbox Cloud Gaming |
ID | lanknfgmjkocejapddeibabjpdenkpnn |
URL Oficial | https://chromewebstore.google.com/detail/server-selector-for-xbox/lanknfgmjkocejapddeibabjpdenkpnn |
Descrição | A browser extension to select the server region and IP version for Xbox Cloud Gaming |
Tamanho do Arquivo | 9.38 KB |
Contagem de Instalações | 7,099 |
Versão Atual | 1.1.0 |
Última Atualização | 2023-07-31 |
Data de Publicação | 2023-04-20 |
Classificação | 5.00/5 Total de 12 Avaliações |
Desenvolvedor | n-thumann |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/n-thumann/xbox-cloud-server-selector |
URL da Página de Ajuda | https://github.com/n-thumann/xbox-cloud-server-selector/issues |
Idiomas Suportados | 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" } ] } |