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 |
| 官方網址 | 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"
}
]
} | |