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 |
Eメール | [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 } } |