Stream Recorder

Stream Recorder

Firefox extension that records streams and videos.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Stream Recorder",
  "version": "2.0",
  "manifest_version": 2,
  "description": "Firefox extension that records streams and videos.",
  "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": "{75ed68d9-52d0-4dd3-8138-de2afa3e7c53}"
    }
  }
}