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
官方網址 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
電子郵箱 [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"
        }
    }
}