WebXR API Emulator
WebXR API Emulator
WebXR API Emulatorคืออะไร?
WebXR API Emulator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mozilla Mixed Reality และคุณลักษณะหลักของมันคือ "WebXR API Emulator"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WebXR API Emulator
ดาวน์โหลดไฟล์ส่วนขยาย WebXR API Emulator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
WebXR Emulator extension enables users and developers to run and test WebXR content in desktop browsers without using a real XR device. The extension will emulate the WebXR API on browsers that don’t support it yet and also provide a list of XR devices with their controllers to emulate.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | WebXR API Emulator |
ID | mjddjgeghkdijejnciaefnkjmkafnnje |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/webxr-api-emulator/mjddjgeghkdijejnciaefnkjmkafnnje |
คำอธิบาย | WebXR API Emulator |
ขนาดไฟล์ | 755 KB |
จำนวนการติดตั้ง | 34,261 |
เวอร์ชันปัจจุบัน | 0.3.3 |
อัปเดตครั้งล่าสุด | 2021-01-29 |
วันที่เผยแพร่ | 2020-04-08 |
คะแนน | 4.41/5 รวมทั้งหมด 17 คะแนน |
ผู้พัฒนา | Mozilla Mixed Reality |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/MozillaReality/WebXR-emulator-extension |
URL หน้าช่วยเหลือ | https://github.com/MozillaReality/WebXR-emulator-extension/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WebXR API Emulator", "short_name": "WebXR Emu", "version": "0.3.3", "minimum_chrome_version": "10.0", "devtools_page": "src\/extension\/devtools.html", "description": "WebXR API Emulator", "homepage_url": "https:\/\/github.com\/MozillaReality\/WebXR-emulator-extension", "author": "Takahiro Aoyagi", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "src\/extension\/background.js" ] }, "permissions": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*", "storage" ], "content_scripts": [ { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "polyfill\/webxr-polyfill.js", "src\/ConfigurationManager.js", "src\/extension\/content-script.js" ], "run_at": "document_start", "all_frames": true } ], "browser_action": { "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_title": "WebXR API Emulator", "default_popup": "src\/extension\/popup.html" }, "manifest_version": 2, "web_accessible_resources": [ "src\/devices.json", "assets\/hall_empty.glb" ] } |