Camp K12 Screen Sharing

Camp K12 Screen Sharing

This extension enables you to share your screen with other participants in a Camp K12 LIVE virtual classroom.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Camp K12 Screen Sharing",
  "author": "Camp K12",
  "version": "2.0",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "This extension enables you to share your screen with other participants in a Camp K12 LIVE virtual classroom.",
  "homepage_url": "https://campk12.live",
  "incognito": "spanning",
  "offline_enabled": true,
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "externally_connectable": {
    "matches": [
      "https://*.campk12.live/*",
      "https://*.campk12.com/*",
      "https://campk12live-v1.herokuapp.com/*",
      "*://localhost/*"
    ]
  },
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}