TICloudAgent Bridge
Facilitates flashing and debugging TI devices from the cloud
Qu'est-ce que TICloudAgent Bridge ?
TICloudAgent Bridge est une extension Chrome développée par https://dev.ti.com, et sa fonction principale est "Facilitates flashing and debugging TI devices from the cloud".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension TICloudAgent Bridge
Téléchargez les fichiers d'extension TICloudAgent Bridge au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | TICloudAgent Bridge |
ID | pfillhniocmjcapelhjcianojmoidjdk |
URL Officiel | https://chromewebstore.google.com/detail/ticloudagent-bridge/pfillhniocmjcapelhjcianojmoidjdk |
Description | Facilitates flashing and debugging TI devices from the cloud |
Taille du Fichier | 12.78 KB |
Nombre d'Installations | 40,081 |
Version Actuelle | 3.0.6 |
Dernière Mise à Jour | 2019-08-21 |
Date de Publication | 2019-08-21 |
Évaluation | 3.93/5 Total 15 Évaluations |
Développeur | https://dev.ti.com |
Type de Paiement | free |
Langues Prises en Charge | 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 } ] } |