TeaVM debugger agent

TeaVM debugger agent, that sends RDP commands over WebSocket

O que é TeaVM debugger agent?

TeaVM debugger agent é uma extensão do Chrome desenvolvida por konsoletyper, e sua principal característica é "TeaVM debugger agent, that sends RDP commands over WebSocket".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão TeaVM debugger agent

Baixe arquivos de extensão TeaVM debugger agent no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome TeaVM debugger agent TeaVM debugger agent
ID jmfipnkacgdmdhapfciejmfgfhfonfgl
URL Oficial https://chromewebstore.google.com/detail/teavm-debugger-agent/jmfipnkacgdmdhapfciejmfgfhfonfgl
Descrição TeaVM debugger agent, that sends RDP commands over WebSocket
Tamanho do Arquivo 8.46 KB
Contagem de Instalações 115
Versão Atual 0.7.1
Última Atualização 2023-08-15
Data de Publicação 2018-12-20
Desenvolvedor konsoletyper
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://teavm.org/
Idiomas Suportados 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
    }
}