VCR Screen-Share

VCR Screen-Share

Record your screen with audio.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "VCR Screen-Share",
  "author": "Pooja Shirsath",
  "version": "4.7.1",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "Record your screen with audio.",
  "homepage_url": "https://www.vconfroom.com/",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "matches": [
        "https://www.vconfroom.com/*"
      ]
    }
  ],
  "icons": {
    "48": "icon.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}