Telesensi Driver

Telesensi Driver

Allows Littmann driver - browser communication

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Stone Three Venture Technology",
  "description": "Allows Littmann driver - browser communication",
  "manifest_version": 2,
  "name": "Telesensi Driver",
  "version": "2.0.3",
  "icons": {
    "48": "icons/48.png"
  },
  "background": {
    "scripts": [
      "ts_background_script.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.telesensi.com/*",
        "*://*.wecounsel.com/*",
        "*://localhost/*"
      ],
      "js": [
        "ts_content_script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_icon": "icons/48.png"
  },
  "permissions": [
    "nativeMessaging"
  ]
}