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 là gì?
Server Selector for Xbox Cloud Gaming là một tiện ích mở rộng Chrome được phát triển bởi n-thumann, và tính năng chính của nó là "A browser extension to select the server region and IP version for Xbox Cloud Gaming".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Server Selector for Xbox Cloud Gaming
Tải xuống các tệp mở rộng Server Selector for Xbox Cloud Gaming dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Server Selector for Xbox Cloud Gaming |
ID | lanknfgmjkocejapddeibabjpdenkpnn |
URL Chính Thức | https://chromewebstore.google.com/detail/server-selector-for-xbox/lanknfgmjkocejapddeibabjpdenkpnn |
Mô tả | A browser extension to select the server region and IP version for Xbox Cloud Gaming |
Kích Thước Tệp | 9.38 KB |
Số Lần Cài Đặt | 7,099 |
Phiên Bản Hiện Tại | 1.1.0 |
Cập Nhật Lần Cuối | 2023-07-31 |
Ngày Phát Hành | 2023-04-20 |
Đánh Giá | 5.00/5 Tổng số 12 Đánh Giá |
Nhà Phát Triển | n-thumann |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/n-thumann/xbox-cloud-server-selector |
URL Trang Trợ Giúp | https://github.com/n-thumann/xbox-cloud-server-selector/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |