Rocket.Chat Screen Share

Rocket.Chat Screen Share

Enable screen sharing for Rocket.Chat

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Rocket.Chat Screen Share",
  "author": "Rodrigo K. Nascimento",
  "version": "0.3.0",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "Enable screen sharing for Rocket.Chat",
  "homepage_url": "https://demo.rocket.chat",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "favicon-16x16.png",
    "32": "favicon-32x32.png",
    "48": "favicon-48x48.png",
    "64": "favicon-64x64.png",
    "96": "favicon-96x96.png",
    "128": "favicon-128x128.png",
    "256": "favicon-256x256.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}