Clownfish Voice Changer for Chrome

Clownfish Voice Changer for Chrome

The ultimate voice changer for Chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Clownfish Voice Changer for Chrome",
  "description": "The ultimate voice changer for Chrome",
  "version": "0.3",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_icon": "res/Microphone.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "contentBody.js",
        "CF.js",
        "CF.wasm",
        "res/*.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "contentScript.js"
      ]
    }
  ]
}