Immersive Web Emulator
WebXR Emulator for Meta Quest devices
Immersive Web Emulator란 무엇입니까?
Immersive Web Emulator은(는) Meta에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "WebXR Emulator for Meta Quest devices"입니다.
확장 프로그램 스크린샷
Immersive Web Emulator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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'" } } |