Record/Stream Screen Sharing Extension

Record/Stream Screen Sharing Extension

Share your screen while recording or streaming.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Record/Stream Screen Sharing Extension",
  "version": "1.0.0",
  "description": "Share your screen while recording or streaming.",
  "icons": {
    "16": "rec-vc-icon-16.png",
    "48": "rec-vc-icon-48.png",
    "128": "rec-vc-icon-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content-script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "homepage_url": "https://my.rec.vc",
  "permissions": [
    "desktopCapture",
    "activeTab",
    "tabs",
    "tabCapture",
    "http://*/",
    "https://*/"
  ],
  "short_name": "Record/Stream Screen Sharing Extension",
  "update_url": "https://clients2.google.com/service/update2/crx"
}