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」です。

拡張機能のスクリーンショット

screenshot
screenshot

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.                    

拡張機能の基本情報

名前 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
Eメール [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"
        }
    ]
}