WebRTC Screen Sharing

WebRTC Screen Sharing

This WebRTC screen sharing extension must be used within webrtc_rails gem! See https://github.com/shredder-rull/webrtc_rails

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WebRTC Screen Sharing",
  "version": "1.3",
  "manifest_version": 2,
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "desktopCapture",
    "tabs",
    "activeTab",
    "<all_urls>"
  ]
}