Comcast Desktop Sharing for Slack

Comcast Desktop Sharing for Slack

A simple extension that allows you to stream your desktop into meetings, powered by Comcast webrtc 2.0

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Comcast Desktop Sharing for Slack",
  "description": "A simple extension that allows you to stream your desktop into meetings, powered by Comcast webrtc 2.0",
  "version": "0.1.0",
  "minimum_chrome_version": "34",
  "icons": {
    "16": "comcast-logo-16x16.png",
    "48": "comcast-logo-48x48.png",
    "128": "comcast-logo-128x128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "desktopCapture"
  ],
  "externally_connectable": {
    "matches": [
      "*://yak.comcast.net/*"
    ]
  }
}