Saba Meeting Chrome Connector

Saba Meeting Chrome Connector

Enables the user to launch into Saba Meeting events within Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Saba Meeting Chrome Connector",
  "version": "1.0.0.3",
  "manifest_version": 2,
  "description": "Enables the user to launch into Saba Meeting events within Chrome.",
  "background": {
    "scripts": [
      "main.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "icons": {
    "128": "icon-128.png"
  },
  "permissions": [
    "nativeMessaging"
  ]
}