Controller Visualizer
An extension that adds a visualization of controller input to the page.
什么是Controller Visualizer?
Controller Visualizer是由thristhart开发的Chrome扩展程序,该扩展的主要功能是“An extension that adds a visualization of controller input to the page.”。
扩展截图
下载Controller Visualizer扩展crx文件
下载Controller Visualizer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Controller Visualizer |
ID | dccpiimcibicljpgnabghpbdjpglmhli |
官方URL | https://chromewebstore.google.com/detail/controller-visualizer/dccpiimcibicljpgnabghpbdjpglmhli |
简介 | An extension that adds a visualization of controller input to the page. |
文件大小 | 68.19 KB |
安装次数 | 701 |
当前版本 | 1.2.0 |
更新时间 | 2022-07-13 |
上架时间 | 2022-07-02 |
评分 | 2.50/5 共2次评分 |
开发者 | thristhart |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://tom.shea.at/ |
帮助页面URL | https://tom.shea.at/contact |
支持的语言 | 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:\/\/*\/*" ] } ] } |