PureCloud Screen Sharing Helper

PureCloud Screen Sharing Helper

Helper utility for enabling screen sharing in PureCloud

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "2.0.1",
  "manifest_version": 2,
  "minimum_chrome_version": "60",
  "permissions": [
    "desktopCapture"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://*.mypurecloud.com/*",
        "https://*.mypurecloud.com.au/*",
        "https://*.mypurecloud.ie/*",
        "https://*.mypurecloud.jp/*",
        "https://*.mypurecloud.de/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.mypurecloud.com/*",
      "https://*.mypurecloud.com.au/*",
      "https://*.mypurecloud.ie/*",
      "https://*.mypurecloud.jp/*",
      "https://*.mypurecloud.de/*"
    ]
  }
}