WebXR API Emulator

WebXR API Emulator

WebXR API Emulator란 무엇입니까?

WebXR API Emulator은(는) Mozilla Mixed Reality에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "WebXR API Emulator"입니다.

확장 프로그램 스크린샷

screenshot

WebXR API Emulator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
    ]
}