Unify Screen Capture

Unify Screen Capture

This extension allows Unify WebRTC connections to use the screen as a video source.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Unify Screen Capture",
  "version": "1.0.0",
  "description": "This extension allows Unify WebRTC connections to use the screen as a video source.",
  "icons": {
    "16": "screencapture_16.png",
    "32": "screencapture_32.png",
    "48": "screencapture_48.png",
    "128": "screencapture_128.png"
  },
  "author": "Unify Communications and Collaboration GmbH & Co. KG",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "homepage_url": "https://www.unify.com",
  "minimum_chrome_version": "34",
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "screencapture_16.png",
    "screencapture_32.png",
    "screencapture_48.png",
    "screencapture_128.png"
  ]
}