Controller Visualizer
An extension that adds a visualization of controller input to the page.
Controller Visualizer là gì?
Controller Visualizer là một tiện ích mở rộng Chrome được phát triển bởi thristhart, và tính năng chính của nó là "An extension that adds a visualization of controller input to the page.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Controller Visualizer
Tải xuống các tệp mở rộng Controller Visualizer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Controller Visualizer |
ID | dccpiimcibicljpgnabghpbdjpglmhli |
URL Chính Thức | https://chromewebstore.google.com/detail/controller-visualizer/dccpiimcibicljpgnabghpbdjpglmhli |
Mô tả | An extension that adds a visualization of controller input to the page. |
Kích Thước Tệp | 68.19 KB |
Số Lần Cài Đặt | 701 |
Phiên Bản Hiện Tại | 1.2.0 |
Cập Nhật Lần Cuối | 2022-07-13 |
Ngày Phát Hành | 2022-07-02 |
Đánh Giá | 2.50/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | thristhart |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://tom.shea.at/ |
URL Trang Trợ Giúp | https://tom.shea.at/contact |
Ngôn Ngữ Được Hỗ Trợ | 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:\/\/*\/*" ] } ] } |