TICloudAgent Bridge

Facilitates flashing and debugging TI devices from the cloud

Τι είναι το TICloudAgent Bridge;

Το TICloudAgent Bridge είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://dev.ti.com, και η κύρια λειτουργία του είναι "Facilitates flashing and debugging TI devices from the cloud".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης TICloudAgent Bridge

Λήψη αρχείων επέκτασης 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
        }
    ]
}