TICloudAgent Bridge
Facilitates flashing and debugging TI devices from the cloud
什么是TICloudAgent Bridge?
TICloudAgent Bridge是由https://dev.ti.com开发的Chrome扩展程序,该扩展的主要功能是“Facilitates flashing and debugging TI devices from the cloud”。
扩展截图
下载TICloudAgent Bridge扩展crx文件
下载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 } ] } |