Controller Visualizer

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

Hvad er Controller Visualizer?

Controller Visualizer er en Chrome-udvidelse udviklet af thristhart, og dens hovedfunktion er "An extension that adds a visualization of controller input to the page.".

Udvidelsesskærmbilleder

screenshot

Download Controller Visualizer-udvidelses-CRX-fil

Download Controller Visualizer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Controller Visualizer Controller Visualizer
ID dccpiimcibicljpgnabghpbdjpglmhli
Officiel URL https://chromewebstore.google.com/detail/controller-visualizer/dccpiimcibicljpgnabghpbdjpglmhli
Beskrivelse An extension that adds a visualization of controller input to the page.
Filstørrelse 68.19 KB
Antal Installationer 701
Nuværende Version 1.2.0
Senest Opdateret 2022-07-13
Udgivelsesdato 2022-07-02
Bedømmelse 2.50/5 Samlet 2 Bedømmelser
Udvikler thristhart
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://tom.shea.at/
Hjælpeside-URL https://tom.shea.at/contact
Understøttede Sprog 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:\/\/*\/*"
            ]
        }
    ]
}