Chrome Desktop Capture

Chrome Desktop Capture

Allows you to capture your desktop with chrome browser for use in video applications

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Chrome Desktop Capture",
  "description": "Allows you to capture your desktop with chrome browser for use in video applications",
  "version": "0.1.0",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "extension.js"
    ],
    "persistent": false
  },
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "https://*.assistdigital.it/*"
    ]
  },
  "permissions": [
    "desktopCapture"
  ],
  "icons": {
    "128": "ScreenSharingIcon.png"
  }
}