Expertory Screen Sharing

Expertory Screen Sharing

This extension allows a user of Expertory to share their screen during a live video call.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Expertory Screen Sharing",
  "short_name": "Screen Share",
  "author": "Expertory Pty Ltd",
  "version": "0.2",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "This extension allows a user of Expertory to share their screen during a live video call.",
  "homepage_url": "http://www.expertory.com",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}