Confrere Screensharing

Confrere Screensharing

Enables screen sharing in Confrere

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Confrere Screensharing",
  "description": "Enables screen sharing in Confrere",
  "version": "1.1.1",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "icons": {
    "16": "icon-16x16.png",
    "32": "icon-32x32.png",
    "128": "icon-128x128.png",
    "192": "icon-192x192.png",
    "512": "icon-512x512.png"
  },
  "permissions": [
    "desktopCapture",
    "https://*.confrere.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://*.confrere.com/*",
        "http://localhost:3000/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.confrere.com/*",
      "http://localhost:3000/*"
    ]
  }
}