Screen Share

Screen Share

Screen Share allows you to share your device screen or a particular application with remote audiences during live sessions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Screen Share",
  "author": "WizIQ",
  "version": "0.0.0.8",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "Screen Share allows you to share your device screen or a particular application with remote audiences during live sessions.",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}