Controller Visualizer
An extension that adds a visualization of controller input to the page.
Controller Visualizer क्या है?
Controller Visualizer thristhart द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension that adds a visualization of controller input to the page."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Controller Visualizer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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:\/\/*\/*" ] } ] } |