TeaVM debugger agent

TeaVM debugger agent, that sends RDP commands over WebSocket

TeaVM debugger agent là gì?

TeaVM debugger agent là một tiện ích mở rộng Chrome được phát triển bởi konsoletyper, và tính năng chính của nó là "TeaVM debugger agent, that sends RDP commands over WebSocket".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng TeaVM debugger agent

Tải xuống các tệp mở rộng TeaVM debugger agent dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TeaVM debugger agent TeaVM debugger agent
ID jmfipnkacgdmdhapfciejmfgfhfonfgl
URL Chính Thức https://chromewebstore.google.com/detail/teavm-debugger-agent/jmfipnkacgdmdhapfciejmfgfhfonfgl
Mô tả TeaVM debugger agent, that sends RDP commands over WebSocket
Kích Thước Tệp 8.46 KB
Số Lần Cài Đặt 115
Phiên Bản Hiện Tại 0.7.1
Cập Nhật Lần Cuối 2023-08-15
Ngày Phát Hành 2018-12-20
Nhà Phát Triển konsoletyper
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://teavm.org/
Ngôn Ngữ Được Hỗ Trợ 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
    }
}