ProctorExam Screen Sharing

ProctorExam Screen Sharing

Lets you share your screen when taking an online exam on ProctorExam - https://www.proctorexam.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ProctorExam Screen Sharing",
  "author": "Procwise BV",
  "version": "1.6.0",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "Lets you share your screen when taking an online exam on ProctorExam - https://www.proctorexam.com",
  "homepage_url": "https://proctorexam.com/",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "matches": [
        "https://*.proctorexam.com/*"
      ]
    }
  ],
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "permissions": [
    "desktopCapture",
    "activeTab",
    "tabs",
    "https://*.proctorexam.com/*"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}