TICloudAgent Bridge

Facilitates flashing and debugging TI devices from the cloud

TICloudAgent Bridge là gì?

TICloudAgent Bridge là một tiện ích mở rộng Chrome được phát triển bởi https://dev.ti.com, và tính năng chính của nó là "Facilitates flashing and debugging TI devices from the cloud".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng TICloudAgent Bridge

Tải xuống các tệp mở rộng TICloudAgent Bridge dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TICloudAgent Bridge TICloudAgent Bridge
ID pfillhniocmjcapelhjcianojmoidjdk
URL Chính Thức https://chromewebstore.google.com/detail/ticloudagent-bridge/pfillhniocmjcapelhjcianojmoidjdk
Mô tả Facilitates flashing and debugging TI devices from the cloud
Kích Thước Tệp 12.78 KB
Số Lần Cài Đặt 40,081
Phiên Bản Hiện Tại 3.0.6
Cập Nhật Lần Cuối 2019-08-21
Ngày Phát Hành 2019-08-21
Đánh Giá 3.93/5 Tổng số 15 Đánh Giá
Nhà Phát Triển https://dev.ti.com
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}