Controller Visualizer
An extension that adds a visualization of controller input to the page.
Что такое Controller Visualizer?
Controller Visualizer - это расширение Chrome, разработанное thristhart, и его основная функция - "An extension that adds a visualization of controller input to the page.".
Снимки экрана расширения
Скачать файл CRX расширения Controller Visualizer
Скачайте файлы расширений 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:\/\/*\/*" ] } ] } |