Controller Visualizer

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

What is Controller Visualizer?

Controller Visualizer is a Chrome extension developed by thristhart, and its main feature is "An extension that adds a visualization of controller input to the page.".

Extension Screenshots

screenshot

Download Controller Visualizer Extension CRX File

Download Controller Visualizer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Controller Visualizer Controller Visualizer
ID dccpiimcibicljpgnabghpbdjpglmhli
Official URL https://chromewebstore.google.com/detail/controller-visualizer/dccpiimcibicljpgnabghpbdjpglmhli
Description An extension that adds a visualization of controller input to the page.
File Size 68.19 KB
Installation Count 701
Current Version 1.2.0
Last Updated 2022-07-13
Publish Date 2022-07-02
Rating 2.50/5 Total 2 Ratings
Developer thristhart
Email [email protected]
Payment Type free
Extension Website https://tom.shea.at/
Help Page URL https://tom.shea.at/contact
Supported Languages 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:\/\/*\/*"
            ]
        }
    ]
}