TICloudAgent Bridge

TICloudAgent Bridge

Facilitates flashing and debugging TI devices from the cloud

Merlin
Additional files are visible only to premium users

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