Immersive Web Emulator
WebXR Emulator for Meta Quest devices
Immersive Web Emulator क्या है?
Immersive Web Emulator Meta द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "WebXR Emulator for Meta Quest devices"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Immersive Web Emulator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Develop WebXR experiences efficiently and effectively on Meta Quest with Immersive Web Emulator. This browser extension provides a user-friendly interface and is capable of simulating all Meta Quest headsets, enabling developers to easily test and iterate their WebXR experiences without a physical XR device. Key Features - Interactive 3D viewport to easily transform manipulation of the VR headset and the controllers - Simulate controller input, binary input (buttons), and analog input (trigger, grip, joysticks) - Simulate hand input, including built-in hand poses and pinch gesture control - Keyboard action mapping for added efficiency - Keyboard input relay The extension is built on top of the WebExtensions API, and implements the newly introduced Chrome Extension Manifest V3, which means that it will operate with enhanced security and performance on most Chromium-based desktop browsers. How to Use It - Download the extension from this page. - Navigate to a WebXR app, such as this Three.js example: https://threejs.org/examples/webxr_xr_dragging The app will detect WebXR support as if you are visiting from the specified Meta Quest device, and let you enter immersive (AR/VR) mode. - Launch the desktop browser’s developer tool panel, and navigate to the “WebXR” tab to control the emulated device. Developer Resources - Learn more about Immersive Web Emulator: https://developer.oculus.com/blog/webxr-development-immersive-web-emulator/ - Find detailed instructions on using Immersive Web Emulator: https://github.com/meta-quest/immersive-web-emulator#immersive-web-emulator-usage
एक्सटेंशन की मूल जानकारी
नाम | Immersive Web Emulator |
ID | cgffilbpcibhmcfbgggfhfolhkfbhmik |
आधिकारिक URL | https://chromewebstore.google.com/detail/immersive-web-emulator/cgffilbpcibhmcfbgggfhfolhkfbhmik |
विवरण | WebXR Emulator for Meta Quest devices |
फ़ाइल का आकार | 700 KB |
स्थापना संख्या | 5,490 |
वर्तमान संस्करण | 1.5.0 |
अंतिम अपडेट | 2023-12-21 |
प्रकाशन तिथि | 2023-02-01 |
रेटिंग | 4.73/5 कुल 15 रेटिंग्स |
डेवलपर | Meta |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/meta-quest/immersive-web-emulator/ |
सहायता पृष्ठ URL | https://github.com/meta-quest/immersive-web-emulator/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Immersive Web Emulator", "short_name": "IWE", "version": "1.5.0", "minimum_chrome_version": "88", "devtools_page": "dist\/devtools.html", "description": "WebXR Emulator for Meta Quest devices", "author": "Felix Zhang ([email protected])", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "service_worker": "dist\/service-worker.js" }, "permissions": [ "storage", "scripting" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "dist\/content.js" ], "run_at": "document_start", "all_frames": true } ], "action": { "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_popup": "dist\/popup.html" }, "manifest_version": 3, "web_accessible_resources": [], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } } |