Screen Share

Screen Share

This WebRTC screen capturing extension can be used within any WebRTC library/application! Use getScreenId.js!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Screen Share",
  "author": "Rackeyyang",
  "version": "1.3.4",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "This WebRTC screen capturing extension can be used within any WebRTC library/application! Use getScreenId.js!",
  "homepage_url": "https://sxb.qcloud.com/webrtcapi/",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "icons": {
    "48": "qcloud.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "qcloud.png"
  ]
}