TICloudAgent Bridge

Facilitates flashing and debugging TI devices from the cloud

Apa itu TICloudAgent Bridge?

TICloudAgent Bridge adalah ekstensi Chrome yang dikembangkan oleh https://dev.ti.com, dan fitur utamanya adalah "Facilitates flashing and debugging TI devices from the cloud".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi TICloudAgent Bridge

Unduh file ekstensi TICloudAgent Bridge dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama TICloudAgent Bridge TICloudAgent Bridge
ID pfillhniocmjcapelhjcianojmoidjdk
URL Resmi https://chromewebstore.google.com/detail/ticloudagent-bridge/pfillhniocmjcapelhjcianojmoidjdk
Deskripsi Facilitates flashing and debugging TI devices from the cloud
Ukuran File 12.78 KB
Jumlah Instalasi 40,081
Versi Saat Ini 3.0.6
Terakhir Diperbarui 2019-08-21
Tanggal Publikasi 2019-08-21
Penilaian 3.93/5 Total 15 Penilaian
Pengembang https://dev.ti.com
Tipe Pembayaran free
Bahasa yang Didukung 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
        }
    ]
}