WebXR API Emulator

WebXR API Emulator

WebXR API Emulatorとは何ですか?

WebXR API EmulatorはMozilla Mixed Realityによって開発されたChromeの拡張機能で、その主な機能は「WebXR API Emulator」です。

拡張機能のスクリーンショット

screenshot

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 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
Eメール [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"
    ]
}