Enable Screen Sharing - V1

Enable Screen Sharing - V1

This chrome extension enables screen sharing support for the duration of test.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Enable Screen Sharing - V1",
  "description": "This chrome extension enables screen sharing support for the duration of test.",
  "version": "2.17",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://cscexam.in/*",
        "https://proctor.cscexam.in/*",
        "https://nielitexam.in/*",
        "https://proctor.nielitexam.in/*",
        "https://uat.cscexam.in/*",
        "https://seb.wheebox.com/*",
        "https://aks.wheebox.com/*",
        "https://wheebox.com/*",
        "https://uat.wheebox.com/*",
        "https://uat1.wheebox.com/*",
        "https://uat2.wheebox.com/*",
        "https://dtuonlineexam.in/*",
        "https://was.wheebox.com/*",
        "https://wheeboxuat.com/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "icon128.png"
  ]
}