Volume Recorder Online

Volume Recorder Online

Audio capture extension is a useful tool for anyone who needs to record audio from their web browser quickly and easily.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.1.7",
  "action": {
    "default_popup": "src/layouts/popup.html",
    "default_icon": "icons/icon-512_x_512.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "offscreen",
    "tabCapture",
    "downloads",
    "alarms"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "src/js/contentScript.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "src/js/serviceWorker.js",
    "type": "module"
  },
  "icons": {
    "16": "icons/icon-16_x_16.png",
    "32": "icons/icon-32_x_32.png",
    "65": "icons/icon-64_x_64.png",
    "512": "icons/icon-512_x_512.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  },
  "commands": {
    "StartRecording": {
      "suggested_key": {
        "default": "Alt+Shift+R",
        "windows": "Alt+Shift+R",
        "mac": "Alt+Shift+R"
      },
      "description": "Start"
    },
    "StopRecording": {
      "suggested_key": {
        "default": "Alt+Shift+S",
        "windows": "Alt+Shift+S",
        "mac": "Alt+Shift+S"
      },
      "description": "Stop"
    }
  }
}