Web Rocket screen sharing

Web Rocket screen sharing

This Chrome extension is developed primary for https://meshmoon.com/. 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": "Web Rocket screen sharing",
  "author": "Adminotech Ltd.",
  "version": "2.0",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "This Chrome extension is developed primary for https://meshmoon.com/. It doesn't do anything except capture content of your screen.",
  "homepage_url": "http://meshmoon.com/",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "externally_connectable": {
    "matches": [
      "http://localhost/*",
      "https://*.meshmoon.com/*"
    ]
  },
  "icons": {
    "16": "screensharing_16.png",
    "48": "screensharing_48.png",
    "128": "screensharing_128.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}