Live Recorder

Live Recorder

Record audio and video as webm, in real time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Live Recorder",
  "version": "3.0",
  "manifest_version": 2,
  "description": "Record audio and video in real time.",
  "homepage_url": "https://gitlab.com/losnappas/Live-Recorder",
  "background": {
    "scripts": [
      "/src/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "/icons/rec-button.svg",
    "browser_style": true,
    "default_title": "Start recording"
  },
  "icons": {
    "64": "icons/rec-button.svg"
  },
  "permissions": [
    "activeTab"
  ],
  "web_accessible_resources": [
    "/live-recorder-worker-bundle.js"
  ],
  "applications": {
    "gecko": {
      "strict_min_version": "63.0",
      "id": "{36da9617-69e6-45b2-a495-ac5d07168ccd}"
    }
  }
}