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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Converts TUIO touches delivered via WebSockets to standard HTML 5 touches"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Touch-Base TUIO Bridge एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
        }
    }
}