TICloudAgent Bridge

Facilitates flashing and debugging TI devices from the cloud

Co je TICloudAgent Bridge?

TICloudAgent Bridge je rozšíření Chrome vyvinuté https://dev.ti.com, a jeho hlavní funkcí je „Facilitates flashing and debugging TI devices from the cloud“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření TICloudAgent Bridge

Stáhněte si soubory rozšíření TICloudAgent Bridge ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název TICloudAgent Bridge TICloudAgent Bridge
ID pfillhniocmjcapelhjcianojmoidjdk
Oficiální URL https://chromewebstore.google.com/detail/ticloudagent-bridge/pfillhniocmjcapelhjcianojmoidjdk
Popis Facilitates flashing and debugging TI devices from the cloud
Velikost souboru 12.78 KB
Počet instalací 40,081
Aktuální Verze 3.0.6
Poslední Aktualizace 2019-08-21
Datum Vydání 2019-08-21
Hodnocení 3.93/5 Celkem 15 Hodnocení
Vývojář https://dev.ti.com
Typ Platby free
Podporované Jazyky 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
        }
    ]
}