TICloudAgent Bridge

Facilitates flashing and debugging TI devices from the cloud

O que é TICloudAgent Bridge?

TICloudAgent Bridge é uma extensão do Chrome desenvolvida por https://dev.ti.com, e sua principal característica é "Facilitates flashing and debugging TI devices from the cloud".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão TICloudAgent Bridge

Baixe arquivos de extensão TICloudAgent Bridge 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 extension facilitates flashing and debugging hardware devices from the Texas Instruments Cloud IDE. The actual flashing and debugging is performed by the TICloudAgent application which must be installed separately. This extension acts as a bridge to that application by launching and then communicating with it via a web sockets interface.                    

Informações Básicas da Extensão

Nome TICloudAgent Bridge TICloudAgent Bridge
ID pfillhniocmjcapelhjcianojmoidjdk
URL Oficial https://chromewebstore.google.com/detail/ticloudagent-bridge/pfillhniocmjcapelhjcianojmoidjdk
Descrição Facilitates flashing and debugging TI devices from the cloud
Tamanho do Arquivo 12.78 KB
Contagem de Instalações 40,081
Versão Atual 3.0.6
Última Atualização 2019-08-21
Data de Publicação 2019-08-21
Classificação 3.93/5 Total de 15 Avaliações
Desenvolvedor https://dev.ti.com
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TICloudAgent Bridge",
    "version": "3.0.6",
    "manifest_version": 2,
    "description": "Facilitates flashing and debugging TI devices from the cloud",
    "background": {
        "page": "main.html"
    },
    "icons": {
        "128": "ti_app_128.png"
    },
    "permissions": [
        "nativeMessaging"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.ti.com\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.ti.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}