TICloudAgent Bridge
Facilitates flashing and debugging TI devices from the cloud
Что такое TICloudAgent Bridge?
TICloudAgent Bridge - это расширение Chrome, разработанное https://dev.ti.com, и его основная функция - "Facilitates flashing and debugging TI devices from the cloud".
Снимки экрана расширения
Скачать файл CRX расширения TICloudAgent Bridge
Скачайте файлы расширений TICloudAgent Bridge в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | TICloudAgent Bridge |
ID | pfillhniocmjcapelhjcianojmoidjdk |
Официальный URL | https://chromewebstore.google.com/detail/ticloudagent-bridge/pfillhniocmjcapelhjcianojmoidjdk |
Описание | Facilitates flashing and debugging TI devices from the cloud |
Размер файла | 12.78 KB |
Количество установок | 40,081 |
Текущая Версия | 3.0.6 |
Последнее Обновление | 2019-08-21 |
Дата публикации | 2019-08-21 |
Рейтинг | 3.93/5 Всего 15 оценок |
Разработчик | https://dev.ti.com |
Тип оплаты | free |
Поддерживаемые языки | 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 } ] } |