Controller Visualizer
An extension that adds a visualization of controller input to the page.
Apa itu Controller Visualizer?
Controller Visualizer adalah ekstensi Chrome yang dikembangkan oleh thristhart, dan fitur utamanya adalah "An extension that adds a visualization of controller input to the page.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Controller Visualizer
Unduh file ekstensi Controller Visualizer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Controller Visualizer |
ID | dccpiimcibicljpgnabghpbdjpglmhli |
URL Resmi | https://chromewebstore.google.com/detail/controller-visualizer/dccpiimcibicljpgnabghpbdjpglmhli |
Deskripsi | An extension that adds a visualization of controller input to the page. |
Ukuran File | 68.19 KB |
Jumlah Instalasi | 701 |
Versi Saat Ini | 1.2.0 |
Terakhir Diperbarui | 2022-07-13 |
Tanggal Publikasi | 2022-07-02 |
Penilaian | 2.50/5 Total 2 Penilaian |
Pengembang | thristhart |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://tom.shea.at/ |
URL Halaman Bantuan | https://tom.shea.at/contact |
Bahasa yang Didukung | 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:\/\/*\/*" ] } ] } |