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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย n-thumann และคุณลักษณะหลักของมันคือ "A browser extension to select the server region and IP version for Xbox Cloud Gaming"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Server Selector for Xbox Cloud Gaming
ดาวน์โหลดไฟล์ส่วนขยาย 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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Server Selector for Xbox Cloud Gaming |
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" } ] } |