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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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" } ] } |