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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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/ |
عنوان صفحة المساعدة | 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:\/\/*\/*" ] } ] } |