TICloudAgent Bridge

Facilitates flashing and debugging TI devices from the cloud

Cos'è TICloudAgent Bridge?

TICloudAgent Bridge è un'estensione di Chrome sviluppata da https://dev.ti.com, e la sua funzione principale è "Facilitates flashing and debugging TI devices from the cloud".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione TICloudAgent Bridge

Scarica i file di estensione TICloudAgent Bridge in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome TICloudAgent Bridge TICloudAgent Bridge
ID pfillhniocmjcapelhjcianojmoidjdk
URL Ufficiale https://chromewebstore.google.com/detail/ticloudagent-bridge/pfillhniocmjcapelhjcianojmoidjdk
Descrizione Facilitates flashing and debugging TI devices from the cloud
Dimensione del File 12.78 KB
Conteggio Installazioni 40,081
Versione Corrente 3.0.6
Ultimo Aggiornamento 2019-08-21
Data di Pubblicazione 2019-08-21
Valutazione 3.93/5 Totale 15 Valutazioni
Sviluppatore https://dev.ti.com
Tipo di Pagamento free
Lingue Supportate 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
        }
    ]
}