Touch-Base TUIO Bridge

Converts TUIO touches delivered via WebSockets to standard HTML 5 touches

Touch-Base TUIO Bridgeとは何ですか?

Touch-Base TUIO BridgeはTouch-Base Ltdによって開発されたChromeの拡張機能で、その主な機能は「Converts TUIO touches delivered via WebSockets to standard HTML 5 touches」です。

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

screenshot

Touch-Base TUIO Bridge拡張機能のCRXファイルをダウンロード

Touch-Base TUIO Bridge拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        The Touch-Base TUIO Bridge allows touch-enabled webpages to work in operating systems that don't natively support touch screens, namely macOS.

This add-on works best with the UPDD software suite. It will work automatically with the UPDD touch driver and the UPDD Commander app, when used with UPDD Commander's "Browsers (TUIO)" preset.

It can also be used with other TUIO servers, provided it is combined with another app or script that converts the TUIO UDP packets into WebSocket packets.                    

拡張機能の基本情報

名前 Touch-Base TUIO Bridge Touch-Base TUIO Bridge
ID ennagehjhlmmmjkjbepdgjngmbddcnnm
公式URL https://chromewebstore.google.com/detail/touch-base-tuio-bridge/ennagehjhlmmmjkjbepdgjngmbddcnnm
説明 Converts TUIO touches delivered via WebSockets to standard HTML 5 touches
ファイルサイズ 50.66 KB
インストール数 154
現在のバージョン 1.0.1
最終更新日 2022-04-01
公開日 2019-04-29
評価 5.00/5 合計 1 レビュー
開発者 Touch-Base Ltd
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://touch-base.com
ヘルプページのURL https://touch-base.com/support
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Touch-Base TUIO Bridge",
    "version": "1.0.1",
    "description": "Converts TUIO touches delivered via WebSockets to standard HTML 5 touches",
    "manifest_version": 2,
    "background": {
        "persistant": false,
        "scripts": [
            "osc.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icon_16.png",
        "32": "icon_32.png",
        "48": "icon_48.png",
        "64": "icon_64.png",
        "128": "icon_128.png"
    },
    "web_accessible_resources": [
        "inject.js"
    ],
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "57.0"
        }
    }
}