Controller Visualizer

An extension that adds a visualization of controller input to the page.

Was ist Controller Visualizer?

Controller Visualizer ist eine Chrome-Erweiterung, die von thristhart entwickelt wurde, und ihr Hauptmerkmal ist "An extension that adds a visualization of controller input to the page.".

Erweiterungsscreenshots

screenshot

Controller Visualizer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Controller Visualizer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Adds an overlay to a website that visualizes controller input; helpful for screen sharing or recording when navigating with a controller.

Tested with Xbox and PlayStation controllers, but should work with any standard gamepad.                    

Grundlegende Informationen zur Erweiterung

Name Controller Visualizer Controller Visualizer
ID dccpiimcibicljpgnabghpbdjpglmhli
Offizielle URL https://chromewebstore.google.com/detail/controller-visualizer/dccpiimcibicljpgnabghpbdjpglmhli
Beschreibung An extension that adds a visualization of controller input to the page.
Dateigröße 68.19 KB
Installationsanzahl 701
Aktuelle Version 1.2.0
Letztes Update 2022-07-13
Veröffentlichungsdatum 2022-07-02
Bewertung 2.50/5 Insgesamt 2 Bewertungen
Entwickler thristhart
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://tom.shea.at/
Hilfeseite URL https://tom.shea.at/contact
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Controller Visualizer",
    "version": "1.2.0",
    "description": "An extension that adds a visualization of controller input to the page.",
    "icons": {
        "128": "icons\/icon128x128.png"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ],
    "action": {
        "default_title": "Display Controller Visualizer"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*.png",
                "images\/**\/*.png",
                ".\/contentScript\/content.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ]
}