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:\/\/*\/*" ] } ] } |