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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 } ] } |