TouchStadia

TouchStadia is a Chrome Extension which adds on-screen joystick control to Stadia for touchscreen devices!

Τι είναι το TouchStadia;

Το TouchStadia είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ihatecsv, και η κύρια λειτουργία του είναι "TouchStadia is a Chrome Extension which adds on-screen joystick control to Stadia for touchscreen devices!".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης TouchStadia

Λήψη αρχείων επέκτασης TouchStadia σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        TouchStadia adds an on-screen joystick to control Stadia games from your touchscreen device. It has built-in options to resize and color these controls, as well as moving the margins to easily reach buttons regardless of your screen size!

To use, simply install the extension and open or refresh Stadia! Click the extension icon to show configuration options. Please visit the GitHub page (click the Website link) for info on using TouchStadia on Android!

To move buttons around, press CTRL+; in Stadia and layout mode will be activated (indicated by a magenta background.) Tap/click and drag buttons to change their positions during this time. Press CTRL+; again to disable layout mode. This hotkey will not work when Stadia is in-game. This is a known issue, so to ensure function please only use this shortcut outside of games for now.

Keep in mind that once you change the position of a button in layout mode, that button will no longer move relative to the window border when resizing your browser, so you must maintain the same browser window size for the layout to look consistent. If you create a layout, then shrink your browser, it's possible to lose buttons outside the visible area! To reset the layout, press the Reset button in the TouchStadia configuration.

If you'd like to test the extension, but would rather not wait for Stadia to open a game, TouchStadia also runs on https://html5gamepad.com for testing purposes!

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

Made in Canada 🇨🇦                    

Βασικές Πληροφορίες Επέκτασης

Όνομα TouchStadia TouchStadia
ID kdkboloommjpbahkdlhengbghlhcejaj
Επίσημο URL https://chromewebstore.google.com/detail/touchstadia/kdkboloommjpbahkdlhengbghlhcejaj
Περιγραφή TouchStadia is a Chrome Extension which adds on-screen joystick control to Stadia for touchscreen devices!
Μέγεθος Αρχείου 60.72 KB
Αριθμός Εγκαταστάσεων 572
Τρέχουσα Έκδοση 0.0.25
Τελευταία Ενημέρωση 2020-03-01
Ημερομηνία Δημοσίευσης 2020-02-29
Αξιολόγηση 4.60/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής ihatecsv
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/ihatecsv/TouchStadia
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/ihatecsv/TouchStadia/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TouchStadia",
    "version": "0.0.25",
    "description": "TouchStadia is a Chrome Extension which adds on-screen joystick control to Stadia for touchscreen devices!",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "settings.html",
        "default_icon": {
            "16": "img\/ts-16.png",
            "32": "img\/ts-32.png",
            "48": "img\/ts-48.png",
            "128": "img\/ts-128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/stadia.google.com\/*",
                "https:\/\/html5gamepad.com\/*"
            ],
            "js": [
                "touchstadia.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "declarativeContent"
    ],
    "icons": {
        "16": "img\/ts-16.png",
        "32": "img\/ts-32.png",
        "48": "img\/ts-48.png",
        "128": "img\/ts-128.png"
    },
    "web_accessible_resources": [
        "img\/controls\/*.svg",
        "res\/*.json"
    ],
    "manifest_version": 2
}