TICloudAgent Bridge
Facilitates flashing and debugging TI devices from the cloud
Wat is TICloudAgent Bridge?
TICloudAgent Bridge is een Chrome-extensie ontwikkeld door https://dev.ti.com, en de belangrijkste functie is "Facilitates flashing and debugging TI devices from the cloud".
Extensie Screenshots
Download het CRX-bestand van de extensie TICloudAgent Bridge
Download TICloudAgent Bridge-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | TICloudAgent Bridge |
ID | pfillhniocmjcapelhjcianojmoidjdk |
Officiële URL | https://chromewebstore.google.com/detail/ticloudagent-bridge/pfillhniocmjcapelhjcianojmoidjdk |
Beschrijving | Facilitates flashing and debugging TI devices from the cloud |
Bestandsgrootte | 12.78 KB |
Aantal Installaties | 40,081 |
Huidige Versie | 3.0.6 |
Laatst Bijgewerkt | 2019-08-21 |
Publicatiedatum | 2019-08-21 |
Beoordeling | 3.93/5 Totaal 15 Beoordelingen |
Ontwikkelaar | https://dev.ti.com |
Betalingswijze | free |
Ondersteunde Talen | 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 } ] } |