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 } ] } |