Vidyou Screen Recorder

Vidyou Screen Recorder

Screen recorder for the Vidyou platform.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Vidyou Screen Recorder",
  "author": "Vidyou",
  "version": "1.0",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "Screen recorder for the Vidyou platform.",
  "homepage_url": "https://www.vidyou.co",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "matches": [
        "https://use.vidyou.co/*"
      ]
    }
  ],
  "icons": {
    "32": "icon.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}