TutorComp

TutorComp

Plugin to record and stream desktop over call

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TutorComp",
  "short_name": "TutorComp",
  "description": "Plugin to record and stream desktop over call",
  "version": "1.3.1",
  "minimum_chrome_version": "34",
  "icons": {
    "16": "images/logo16x16.png",
    "48": "images/logo48x48.png",
    "128": "images/logo128x128.png"
  },
  "browser_action": {
    "default_icon": "images/logo16x16.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js",
      "socket.io.js",
      "recorder.js",
      "MediaStreamRecorder.js"
    ],
    "matches": [
      "*://media.tutorcomp.com/*",
      "*://tutorcomp.com/*",
      "*://class.tutorcomp.com/*",
      "*://localhost/*"
    ]
  },
  "permissions": [
    "desktopCapture",
    "tabs",
    "tabCapture",
    "notifications"
  ],
  "web_accessible_resources": [
    "images/logo16x16.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://media.tutorcomp.com/*",
        "*://tutorcomp.com/*",
        "*://class.tutorcomp.com/*",
        "*://localhost/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://media.tutorcomp.com/*",
      "*://tutorcomp.com/*",
      "*://class.tutorcomp.com/*",
      "*://localhost/*"
    ]
  }
}