Wit Web Communicator Screen Sharing

Wit Web Communicator Screen Sharing

This extension allows you to share your screen

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Wit Web Communicator Screen Sharing",
  "description": "This extension allows you to share your screen",
  "version": "0.0.6",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "icons": {
    "16": "wit16.png",
    "48": "wit48.png",
    "128": "wit128.png"
  },
  "permissions": [
    "desktopCapture",
    "https://*.wit-software.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://*.wit-software.com/*"
      ],
      "run_at": "document_start"
    }
  ]
}