BigBlueButton Screenshare Extension

Chrome Extension granting WebRTC screen capturing capabilities to BigBlueButton meetings.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "BigBlueButton Screenshare Extension",
  "author": "BigBlueButton",
  "version": "0.0.6",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "Chrome Extension granting WebRTC screen capturing capabilities to BigBlueButton meetings.",
  "homepage_url": "https://bigbluebutton.org/",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": true
  },
  "externally_connectable": {
    "matches": [
      "*://*.jovenclub.cu/*"
    ]
  },
  "icons": {
    "48": "icon.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}