Voice Changer for Chrome (by noise-box)

Voice Changer for Chrome (by noise-box)

The ultimate voice changer for Chrome to use with Google Meet, Zoom, and more!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Voice Changer for Chrome (by noise-box)",
  "version": "0.0.7",
  "description": "The ultimate voice changer for Chrome to use with Google Meet, Zoom, and more!",
  "options_page": "src/pages/options/index.html",
  "background": {
    "service_worker": "src/pages/background/index.js"
  },
  "homepage_url": "https://www.noise-box.es/",
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "icon-128.png",
        "icon-34.png",
        "audiosources.html"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "permissions": [
    "scripting",
    "activeTab"
  ]
}