Controller Visualizer

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

Co to jest Controller Visualizer?

Controller Visualizer to rozszerzenie Chrome opracowane przez thristhart, a jego główną funkcją jest „An extension that adds a visualization of controller input to the page.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Controller Visualizer

Pobierz pliki rozszerzeń Controller Visualizer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Controller Visualizer Controller Visualizer
ID dccpiimcibicljpgnabghpbdjpglmhli
Oficjalny URL https://chromewebstore.google.com/detail/controller-visualizer/dccpiimcibicljpgnabghpbdjpglmhli
Opis An extension that adds a visualization of controller input to the page.
Rozmiar pliku 68.19 KB
Liczba instalacji 701
Aktualna Wersja 1.2.0
Ostatnia Aktualizacja 2022-07-13
Data Publikacji 2022-07-02
Ocena 2.50/5 Łącznie 2 Oceny
Deweloper thristhart
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://tom.shea.at/
Adres URL Strony Pomocy https://tom.shea.at/contact
Obsługiwane Języki 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:\/\/*\/*"
            ]
        }
    ]
}