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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A browser extension to select the server region and IP version for Xbox Cloud Gaming"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Server Selector for Xbox Cloud Gaming एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    ]
}