Examine source code of Dhawni Recorder

Inspect and view changes in Dhawni 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
{
  "name": "Dhawni Recorder",
  "version": "1.0.0",
  "description": "Dhawni Recorder: Solution For Recording the audio using the web browser",
  "permissions": [
    "tabs",
    "contentSettings",
    "downloads"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "author": "surjeet",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/ext-icon.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "assets/ext-icon.png",
      "24": "assets/ext-icon.png",
      "32": "assets/ext-icon.png",
      "64": "assets/ext-icon.png"
    },
    "default_title": "Dhawni Recorder"
  },
  "manifest_version": 3,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}