Bistri Screen Sharing

Bistri Screen Sharing

This extension allows you to share your screen

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bistri Screen Sharing",
  "description": "This extension allows you to share your screen",
  "version": "1.1",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "icons": {
    "128": "logo_icon_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "bridge.js"
      ],
      "matches": [
        "*://*.bistri.com/*",
        "*://*.bistri.me/*",
        "*://fiddle.jshell.net/*",
        "*://run.jsbin.io/*"
      ]
    }
  ],
  "permissions": [
    "desktopCapture"
  ]
}