Examine source code of Dr. Wav Recorder

Inspect and view changes in Dr. Wav Recorder source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Dr. Wav Recorder",
  "version": "0.0.1",
  "description": "Capture audio from browser tabs in high-quality WAV format (48kHz)",
  "icons": {
    "128": "icons/icon.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/offscreen.html",
        "/offscreen.js"
      ],
      "matches": []
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_icon": "icons/icon.png",
    "default_popup": "popup/index.html",
    "default_title": "Dr. Wav Recorder"
  },
  "incognito": "not_allowed",
  "permissions": [
    "tabCapture",
    "downloads",
    "storage",
    "offscreen",
    "activeTab"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}