TeaVM debugger agent

TeaVM debugger agent, that sends RDP commands over WebSocket

TeaVM debugger agentคืออะไร?

TeaVM debugger agent เป็นส่วนขยายของ Chrome ที่พัฒนาโดย konsoletyper และคุณลักษณะหลักของมันคือ "TeaVM debugger agent, that sends RDP commands over WebSocket"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TeaVM debugger agent

ดาวน์โหลดไฟล์ส่วนขยาย TeaVM debugger agent ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This plugin connects to TeaVM's debug server and sends all debug notifications there, so that TeaVM remote debugger becomes available for remote Google Chrome.
See https://teavm.org/docs/tooling/idea.html                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ TeaVM debugger agent TeaVM debugger agent
ID jmfipnkacgdmdhapfciejmfgfhfonfgl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/teavm-debugger-agent/jmfipnkacgdmdhapfciejmfgfhfonfgl
คำอธิบาย TeaVM debugger agent, that sends RDP commands over WebSocket
ขนาดไฟล์ 8.46 KB
จำนวนการติดตั้ง 115
เวอร์ชันปัจจุบัน 0.7.1
อัปเดตครั้งล่าสุด 2023-08-15
วันที่เผยแพร่ 2018-12-20
ผู้พัฒนา konsoletyper
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://teavm.org/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "TeaVM debugger agent",
    "description": "TeaVM debugger agent, that sends RDP commands over WebSocket",
    "version": "0.7.1",
    "permissions": [
        "debugger",
        "activeTab",
        "storage",
        "scripting"
    ],
    "action": {
        "default_icon": "teavm-16.png",
        "default_title ": "Connect to TeaVM debugger"
    },
    "background": {
        "service_worker": "main.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}