TICloudAgent Bridge

Facilitates flashing and debugging TI devices from the cloud

TICloudAgent Bridge क्या है?

TICloudAgent Bridge https://dev.ti.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Facilitates flashing and debugging TI devices from the cloud"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में TICloudAgent Bridge एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
        }
    ]
}