Desktop Share Helper

Desktop Share Helper

A desktop sharing helper app for video and web conferencing with Illustrate Pro, Mercuri Conferencing's web collaboration platform.…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Desktop Share Helper",
  "version": "1.1.3",
  "icons": {
    "32": "icon_32.png",
    "128": "icon_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://ipro.mercuri.ca/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://ipro.mercuri.ca/*"
    ]
  },
  "permissions": [
    "tabs",
    "nativeMessaging",
    "*://ipro.mercuri.ca/*"
  ],
  "web_accessible_resources": [
    "icon_32.png",
    "icon_128.png"
  ],
  "manifest_version": 2
}