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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 } ] } |