Screen Recorder

Screen Recorder

Capture screen recordings and save them to video files.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Screen Recorder",
  "version": "1.0.2",
  "description": "Capture screen recordings and save them to video files.",
  "permissions": [],
  "background": {
    "scripts": [
      "draw-icon.js",
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "32": "circle-icon-32.png"
    }
  },
  "icons": {
    "16": "circle-icon-16.png",
    "48": "circle-icon-48.png",
    "128": "circle-icon-128.png"
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "manifest_version": 2
}