TICloudAgent Bridge

Facilitates flashing and debugging TI devices from the cloud

What is TICloudAgent Bridge?

TICloudAgent Bridge is a Chrome extension developed by https://dev.ti.com, and its main feature is "Facilitates flashing and debugging TI devices from the cloud".

Extension Screenshots

screenshot

Download TICloudAgent Bridge Extension CRX File

Download TICloudAgent Bridge extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name TICloudAgent Bridge TICloudAgent Bridge
ID pfillhniocmjcapelhjcianojmoidjdk
Official URL https://chromewebstore.google.com/detail/ticloudagent-bridge/pfillhniocmjcapelhjcianojmoidjdk
Description Facilitates flashing and debugging TI devices from the cloud
File Size 12.78 KB
Installation Count 40,081
Current Version 3.0.6
Last Updated 2019-08-21
Publish Date 2019-08-21
Rating 3.93/5 Total 15 Ratings
Developer https://dev.ti.com
Payment Type free
Supported Languages 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
        }
    ]
}