Enggheads Screen Share

Enggheads Screen Share

A simple extension that allows you for screen share ..

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Enggheads Screen Share",
  "description": "A simple extension that allows you for screen share  ..",
  "version": "0.3.1",
  "minimum_chrome_version": "34",
  "icons": {
    "16": "logo_engg-16x16.png",
    "48": "logo_engg-48x48.png",
    "128": "logo_engg-128x128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://103.249.237.9/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "desktopCapture"
  ],
  "externally_connectable": {
    "matches": [
      "*://103.249.237.9/*"
    ]
  }
}