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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
        }
    ]
}