General Purpose Screen Sharing

General Purpose Screen Sharing

A general purpose Screensharing ext. It doesn't do anything except capture content of your screen.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "General Purpose Screen Sharing",
  "author": "Sense Studios VOF.",
  "version": "2.1",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "A general purpose Screensharing ext. It doesn't do anything except capture content of your screen.",
  "homepage_url": "http://sense-studios.com/",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "externally_connectable": {
    "matches": [
      "https://*.webcamconsult.com/*",
      "https://*.dev.webcamconsult.com/*",
      "https://*.dev2.webcamconsult.com/*",
      "https://*.staging.webcamconsult.com/*",
      "https://*.webcamconsult.nl/*",
      "https://*.roomdialog.eu/*"
    ]
  },
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}