Server Selector for Xbox Cloud Gaming
A browser extension to select the server region and IP version for Xbox Cloud Gaming
什么是Server Selector for Xbox Cloud Gaming?
Server Selector for Xbox Cloud Gaming是由n-thumann开发的Chrome扩展程序,该扩展的主要功能是“A browser extension to select the server region and IP version for Xbox Cloud Gaming”。
扩展截图
下载Server Selector for Xbox Cloud Gaming扩展crx文件
下载Server Selector for Xbox Cloud Gaming扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | lanknfgmjkocejapddeibabjpdenkpnn |
| 官方URL | https://chromewebstore.google.com/detail/server-selector-for-xbox/lanknfgmjkocejapddeibabjpdenkpnn |
| 简介 | A browser extension to select the server region and IP version for Xbox Cloud Gaming |
| 文件大小 | 9.38 KB |
| 安装次数 | 7,099 |
| 当前版本 | 1.1.0 |
| 更新时间 | 2023-07-31 |
| 上架时间 | 2023-04-20 |
| 评分 | 5.00/5 共12次评分 |
| 开发者 | n-thumann |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/n-thumann/xbox-cloud-server-selector |
| 帮助页面URL | https://github.com/n-thumann/xbox-cloud-server-selector/issues |
| 支持的语言 | 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"
}
]
} | |