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".

Снимки экрана расширения

screenshot
screenshot

Скачать файл 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 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"
        }
    ]
}