ControlStadia

ControlStadia allows arbitrary mapping of input devices to a "standard" virtual input controller which works with Stadia!

ControlStadia란 무엇입니까?

ControlStadia은(는) ihatecsv에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "ControlStadia allows arbitrary mapping of input devices to a "standard" virtual input controller which works with Stadia!"입니다.

확장 프로그램 스크린샷

screenshot

ControlStadia 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        With ControlStadia, you can:

* Map up to four physical gamepads to a single "standard" virtual gamepad which works with Stadia.

* Scale and offset axis to increase or decrease sensitivity, change axis ranges.

* Do normal things like playing GRID with a steering wheel and pedals!

* Do ridiculous things like playing Borderlands 3 with a flight yoke and throttle quadrant!

Usage:

Simply install the extension and open or refresh Stadia! Click the extension icon to configure your virtual joypad.

Once the extension menu is open, it should automatically look for any joysticks plugged into your PC. If none show up, try pressing a button or moving a stick on one.

Once the mapping controls appear, you can now set each button and axis for the virtual gamepad. The "target gamepad" at selected at the top is the gamepad which will be scanned for input when you click on a mapping button. If you want to include controls from multiple gamepads, make sure you switch this target option to the correct one BEFORE pressing a mapping button.

The "Scale" field will multiply input by the factor specified. For example, setting this to two will cause the joystick to become twice as sensitive, but also lose twice its range of motion, since ControlStadia caps axis values to the range [-1, 1]. You can also use a negative scale to invert the axis.

The "Offset" field will add a constant value to the input.

ControlStadia has manifest permissions to run on html5gamepad.com, where you can view the output values of the virtual controller. I highly recommend setting up your virtual controller while on this page!

Scale and offset example:

Say you're trying to map R2 to a controller axis that ranges from [-1, 1]. Because R2 expects a value in the range [0, 1], we must both scale and offset the axis. In this case, the scale would be 0.5 (changing the range to [-0.5, 0.5]) and the offset would be 0.5, (changing the range to [0, 1]).

If you would like to make a suggestion, report an issue found while playing games on Stadia with ControlStadia, or would like to view the list of currently known issues an suggestions, please visit the GitHub issues page here: https://github.com/ihatecsv/ControlStadia/issues                    

확장 프로그램 기본 정보

이름 ControlStadia ControlStadia
ID faodiopjdcjfeflfmeadfkgodcbioejp
공식 URL https://chromewebstore.google.com/detail/controlstadia/faodiopjdcjfeflfmeadfkgodcbioejp
설명 ControlStadia allows arbitrary mapping of input devices to a "standard" virtual input controller which works with Stadia!
파일 크기 56.58 KB
설치 횟수 1,514
현재 버전 0.0.2
최근 업데이트 2021-01-12
출시 날짜 2020-03-12
평점 4.07/5 총 15 개의 평점
개발자 ihatecsv
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ihatecsv/ControlStadia
도움말 페이지 URL https://github.com/ihatecsv/ControlStadia/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ControlStadia",
    "version": "0.0.2",
    "description": "ControlStadia allows arbitrary mapping of input devices to a \"standard\" virtual input controller which works with Stadia!",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "settings.html",
        "default_icon": {
            "16": "img\/cs-16.png",
            "32": "img\/cs-32.png",
            "48": "img\/cs-48.png",
            "128": "img\/cs-128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/stadia.google.com\/*",
                "https:\/\/gamepad-tester.com\/*"
            ],
            "js": [
                "controlstadia.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "declarativeContent"
    ],
    "icons": {
        "16": "img\/cs-16.png",
        "32": "img\/cs-32.png",
        "48": "img\/cs-48.png",
        "128": "img\/cs-128.png"
    },
    "manifest_version": 2
}