TICloudAgent Bridge

Facilitates flashing and debugging TI devices from the cloud

TICloudAgent Bridgeとは何ですか?

TICloudAgent Bridgeはhttps://dev.ti.comによって開発されたChromeの拡張機能で、その主な機能は「Facilitates flashing and debugging TI devices from the cloud」です。

拡張機能のスクリーンショット

screenshot

TICloudAgent Bridge拡張機能のCRXファイルをダウンロード

TICloudAgent Bridge拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 TICloudAgent Bridge TICloudAgent Bridge
ID pfillhniocmjcapelhjcianojmoidjdk
公式URL https://chromewebstore.google.com/detail/ticloudagent-bridge/pfillhniocmjcapelhjcianojmoidjdk
説明 Facilitates flashing and debugging TI devices from the cloud
ファイルサイズ 12.78 KB
インストール数 40,081
現在のバージョン 3.0.6
最終更新日 2019-08-21
公開日 2019-08-21
評価 3.93/5 合計 15 レビュー
開発者 https://dev.ti.com
支払い方法 free
対応言語 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
        }
    ]
}