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. 擴展基本資訊
| 名稱 | |
| ID | dccpiimcibicljpgnabghpbdjpglmhli |
| 官方網址 | 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:\/\/*\/*"
]
}
]
} | |