Controller Visualizer

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

Wat is Controller Visualizer?

Controller Visualizer is een Chrome-extensie ontwikkeld door thristhart, en de belangrijkste functie is "An extension that adds a visualization of controller input to the page.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Controller Visualizer

Download Controller Visualizer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Controller Visualizer Controller Visualizer
ID dccpiimcibicljpgnabghpbdjpglmhli
Officiële URL https://chromewebstore.google.com/detail/controller-visualizer/dccpiimcibicljpgnabghpbdjpglmhli
Beschrijving An extension that adds a visualization of controller input to the page.
Bestandsgrootte 68.19 KB
Aantal Installaties 701
Huidige Versie 1.2.0
Laatst Bijgewerkt 2022-07-13
Publicatiedatum 2022-07-02
Beoordeling 2.50/5 Totaal 2 Beoordelingen
Ontwikkelaar thristhart
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://tom.shea.at/
Help Pagina-URL https://tom.shea.at/contact
Ondersteunde Talen 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:\/\/*\/*"
            ]
        }
    ]
}