MDS Screen-sharing

MDS Screen-sharing

MDS Desktop Capture Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MDS Screen-sharing",
  "version": "0.2",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/videoRoom/*"
      ],
      "js": [
        "contentscript.js"
      ],
      "all_frames": true
    }
  ],
  "description": "MDS Desktop Capture Extension",
  "icons": {
    "128": "mdslogo1.png"
  },
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "permissions": [
    "desktopCapture"
  ]
}