Touch-Base TUIO Bridge

Converts TUIO touches delivered via WebSockets to standard HTML 5 touches

Qu'est-ce que Touch-Base TUIO Bridge ?

Touch-Base TUIO Bridge est une extension Chrome développée par Touch-Base Ltd, et sa fonction principale est "Converts TUIO touches delivered via WebSockets to standard HTML 5 touches".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Touch-Base TUIO Bridge

Téléchargez les fichiers d'extension Touch-Base TUIO Bridge au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Touch-Base TUIO Bridge Touch-Base TUIO Bridge
ID ennagehjhlmmmjkjbepdgjngmbddcnnm
URL Officiel https://chromewebstore.google.com/detail/touch-base-tuio-bridge/ennagehjhlmmmjkjbepdgjngmbddcnnm
Description Converts TUIO touches delivered via WebSockets to standard HTML 5 touches
Taille du Fichier 50.66 KB
Nombre d'Installations 154
Version Actuelle 1.0.1
Dernière Mise à Jour 2022-04-01
Date de Publication 2019-04-29
Évaluation 5.00/5 Total 1 Évaluations
Développeur Touch-Base Ltd
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://touch-base.com
URL de la Page d'Aide https://touch-base.com/support
Langues Prises en Charge 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"
        }
    }
}