Touch-Base TUIO Bridge

Converts TUIO touches delivered via WebSockets to standard HTML 5 touches

¿Qué es Touch-Base TUIO Bridge?

Touch-Base TUIO Bridge es una extensión de Chrome desarrollada por Touch-Base Ltd, y su función principal es "Converts TUIO touches delivered via WebSockets to standard HTML 5 touches".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Touch-Base TUIO Bridge

Descarga archivos de extensión Touch-Base TUIO Bridge en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Touch-Base TUIO Bridge Touch-Base TUIO Bridge
ID ennagehjhlmmmjkjbepdgjngmbddcnnm
URL Oficial https://chromewebstore.google.com/detail/touch-base-tuio-bridge/ennagehjhlmmmjkjbepdgjngmbddcnnm
Descripción Converts TUIO touches delivered via WebSockets to standard HTML 5 touches
Tamaño del Archivo 50.66 KB
Cantidad de Instalaciones 154
Versión Actual 1.0.1
Última Actualización 2022-04-01
Fecha de Publicación 2019-04-29
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Touch-Base Ltd
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://touch-base.com
URL de la Página de Ayuda https://touch-base.com/support
Idiomas Soportados 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"
        }
    }
}