TICloudAgent Bridge
Facilitates flashing and debugging TI devices from the cloud
Vad är TICloudAgent Bridge?
TICloudAgent Bridge är en Chrome-tillägg utvecklad av https://dev.ti.com, och dess huvudfunktion är "Facilitates flashing and debugging TI devices from the cloud".
Tilläggsskärmbilder
Ladda ner TICloudAgent Bridge-förlängningens CRX-fil
Ladda ner TICloudAgent Bridge-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | TICloudAgent Bridge |
ID | pfillhniocmjcapelhjcianojmoidjdk |
Officiell webbadress | https://chromewebstore.google.com/detail/ticloudagent-bridge/pfillhniocmjcapelhjcianojmoidjdk |
Beskrivning | Facilitates flashing and debugging TI devices from the cloud |
Filstorlek | 12.78 KB |
Antal Installationer | 40,081 |
Aktuell Version | 3.0.6 |
Senast Uppdaterad | 2019-08-21 |
Publiceringsdatum | 2019-08-21 |
Betyg | 3.93/5 Totalt 15 Betyg |
Utvecklare | https://dev.ti.com |
Betalningssätt | free |
Stödda Språk | 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 } ] } |