TICloudAgent Bridge
Facilitates flashing and debugging TI devices from the cloud
Co to jest TICloudAgent Bridge?
TICloudAgent Bridge to rozszerzenie Chrome opracowane przez https://dev.ti.com, a jego główną funkcją jest „Facilitates flashing and debugging TI devices from the cloud”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia TICloudAgent Bridge
Pobierz pliki rozszerzeń TICloudAgent Bridge w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | TICloudAgent Bridge |
ID | pfillhniocmjcapelhjcianojmoidjdk |
Oficjalny URL | https://chromewebstore.google.com/detail/ticloudagent-bridge/pfillhniocmjcapelhjcianojmoidjdk |
Opis | Facilitates flashing and debugging TI devices from the cloud |
Rozmiar pliku | 12.78 KB |
Liczba instalacji | 40,081 |
Aktualna Wersja | 3.0.6 |
Ostatnia Aktualizacja | 2019-08-21 |
Data Publikacji | 2019-08-21 |
Ocena | 3.93/5 Łącznie 15 Oceny |
Deweloper | https://dev.ti.com |
Typ Płatności | free |
Obsługiwane Języki | 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 } ] } |