TICloudAgent Bridge

Facilitates flashing and debugging TI devices from the cloud

Hvad er TICloudAgent Bridge?

TICloudAgent Bridge er en Chrome-udvidelse udviklet af https://dev.ti.com, og dens hovedfunktion er "Facilitates flashing and debugging TI devices from the cloud".

Udvidelsesskærmbilleder

screenshot

Download TICloudAgent Bridge-udvidelses-CRX-fil

Download TICloudAgent Bridge-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn TICloudAgent Bridge TICloudAgent Bridge
ID pfillhniocmjcapelhjcianojmoidjdk
Officiel URL https://chromewebstore.google.com/detail/ticloudagent-bridge/pfillhniocmjcapelhjcianojmoidjdk
Beskrivelse Facilitates flashing and debugging TI devices from the cloud
Filstørrelse 12.78 KB
Antal Installationer 40,081
Nuværende Version 3.0.6
Senest Opdateret 2019-08-21
Udgivelsesdato 2019-08-21
Bedømmelse 3.93/5 Samlet 15 Bedømmelser
Udvikler https://dev.ti.com
Betalingsmetode free
Understøttede Sprog 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
        }
    ]
}