Desktop Screen Capture

Desktop Screen Capture

This WebRTC screen capturing extension can be used within any WebRTC library/application!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Desktop Screen Capture",
  "author": "Kesavan Mannupillai",
  "version": "1.3",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "This WebRTC screen capturing extension can be used within any WebRTC library/application!",
  "homepage_url": "https://52.25.232.34/getScreenId/",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "matches": [
        "http://*/*"
      ]
    }
  ],
  "icons": {
    "1": "icon.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}