LearnersPlatform Screenshare Extension

LearnersPlatform Screenshare Extension

Chrome Extension granting WebRTC screen capturing capabilities to LearnersPlatform meetings.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LearnersPlatform Screenshare Extension",
  "author": "LearnersPlatform",
  "version": "1.0.6",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "Chrome Extension granting WebRTC screen capturing capabilities to LearnersPlatform meetings.",
  "homepage_url": "https://LearnersPlatform.com/",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": true
  },
  "externally_connectable": {
    "matches": [
      "*://*.bigbluebutton.org/*",
      "*://*.learnersplatform.com/*"
    ]
  },
  "icons": {
    "48": "lsp.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}