TeaVM debugger agent
TeaVM debugger agent, that sends RDP commands over WebSocket
什么是TeaVM debugger agent?
TeaVM debugger agent是由konsoletyper开发的Chrome扩展程序,该扩展的主要功能是“TeaVM debugger agent, that sends RDP commands over WebSocket”。
扩展截图
下载TeaVM debugger agent扩展crx文件
下载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 |
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 } } |