Touch-Base TUIO Bridge

Converts TUIO touches delivered via WebSockets to standard HTML 5 touches

Touch-Base TUIO Bridgeคืออะไร?

Touch-Base TUIO Bridge เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Touch-Base Ltd และคุณลักษณะหลักของมันคือ "Converts TUIO touches delivered via WebSockets to standard HTML 5 touches"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Touch-Base TUIO Bridge

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
        }
    }
}