TICloudAgent Bridge

Facilitates flashing and debugging TI devices from the cloud

Was ist TICloudAgent Bridge?

TICloudAgent Bridge ist eine Chrome-Erweiterung, die von https://dev.ti.com entwickelt wurde, und ihr Hauptmerkmal ist "Facilitates flashing and debugging TI devices from the cloud".

Erweiterungsscreenshots

screenshot

TICloudAgent Bridge-Erweiterungs-CRX-Datei herunterladen

Laden Sie TICloudAgent Bridge-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name TICloudAgent Bridge TICloudAgent Bridge
ID pfillhniocmjcapelhjcianojmoidjdk
Offizielle URL https://chromewebstore.google.com/detail/ticloudagent-bridge/pfillhniocmjcapelhjcianojmoidjdk
Beschreibung Facilitates flashing and debugging TI devices from the cloud
Dateigröße 12.78 KB
Installationsanzahl 40,081
Aktuelle Version 3.0.6
Letztes Update 2019-08-21
Veröffentlichungsdatum 2019-08-21
Bewertung 3.93/5 Insgesamt 15 Bewertungen
Entwickler https://dev.ti.com
Zahlungsart free
Unterstützte Sprachen 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
        }
    ]
}