WebXR API Emulator
WebXR API Emulator
Co to jest WebXR API Emulator?
WebXR API Emulator to rozszerzenie Chrome opracowane przez Mozilla Mixed Reality, a jego główną funkcją jest „WebXR API Emulator”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia WebXR API Emulator
Pobierz pliki rozszerzeń WebXR API Emulator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | WebXR API Emulator |
ID | mjddjgeghkdijejnciaefnkjmkafnnje |
Oficjalny URL | https://chromewebstore.google.com/detail/webxr-api-emulator/mjddjgeghkdijejnciaefnkjmkafnnje |
Opis | WebXR API Emulator |
Rozmiar pliku | 755 KB |
Liczba instalacji | 34,261 |
Aktualna Wersja | 0.3.3 |
Ostatnia Aktualizacja | 2021-01-29 |
Data Publikacji | 2020-04-08 |
Ocena | 4.41/5 Łącznie 17 Oceny |
Deweloper | Mozilla Mixed Reality |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/MozillaReality/WebXR-emulator-extension |
Adres URL Strony Pomocy | https://github.com/MozillaReality/WebXR-emulator-extension/issues |
Obsługiwane Języki | 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" ] } |