WebXR API Emulator
WebXR API Emulator
什么是WebXR API Emulator?
WebXR API Emulator是由Mozilla Mixed Reality开发的Chrome扩展程序,该扩展的主要功能是“WebXR API Emulator”。
扩展截图
下载WebXR API Emulator扩展crx文件
下载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" ] } |