Controller Visualizer
An extension that adds a visualization of controller input to the page.
Vad är Controller Visualizer?
Controller Visualizer är en Chrome-tillägg utvecklad av thristhart, och dess huvudfunktion är "An extension that adds a visualization of controller input to the page.".
Tilläggsskärmbilder
Ladda ner Controller Visualizer-förlängningens CRX-fil
Ladda ner Controller Visualizer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | dccpiimcibicljpgnabghpbdjpglmhli |
| Officiell webbadress | https://chromewebstore.google.com/detail/controller-visualizer/dccpiimcibicljpgnabghpbdjpglmhli |
| Beskrivning | An extension that adds a visualization of controller input to the page. |
| Filstorlek | 68.19 KB |
| Antal Installationer | 701 |
| Aktuell Version | 1.2.0 |
| Senast Uppdaterad | 2022-07-13 |
| Publiceringsdatum | 2022-07-02 |
| Betyg | 2.50/5 Totalt 2 Betyg |
| Utvecklare | thristhart |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://tom.shea.at/ |
| Hjälpsida URL | https://tom.shea.at/contact |
| Stödda Språk | 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:\/\/*\/*"
]
}
]
} | |