VoiceX Voice Changer
The best voice changer extension
¿Qué es VoiceX Voice Changer?
VoiceX Voice Changer es una extensión de Chrome desarrollada por TsunamiWind, y su función principal es "The best voice changer extension".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión VoiceX Voice Changer
Descarga archivos de extensión VoiceX Voice Changer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
The ultimate voice changer for Chrome VoiceX Voice Changer is an extension for changing your voice. Every web application that uses microphone or other audio capture device will be affected. In general - your voice will be modified in web version of Skype, Discord, Viber, Teams, etc. Current effects list: Alien, Atari, Clone, Mutation, Fast Mutation, Slow Mutation, Male pitch, Baby, Helium, Custom pitch
Información Básica de la Extensión
Nombre | |
ID | kppncmfckkjnadpobmfdncjcpnpelcbk |
URL Oficial | https://chrome.google.com/webstore/detail/voicex-voice-changer/kppncmfckkjnadpobmfdncjcpnpelcbk |
Descripción | The best voice changer extension |
Tamaño del Archivo | 132 KB |
Cantidad de Instalaciones | 3,628 |
Versión Actual | 0.4 |
Última Actualización | 2023-03-12 |
Fecha de Publicación | 2021-10-13 |
Calificación | 3.44/5 Total de 9 Calificaciones |
Desarrollador | TsunamiWind |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "VoiceX Voice Changer", "description": "The best voice changer extension", "version": "0.4", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "res\/Microphone.png", "default_popup": "popup.html" }, "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ] }, "web_accessible_resources": [ "contentBody.js", "CF.js", "CF.wasm", "res\/*.png" ], "content_security_policy": "script-src 'self' 'wasm-eval'; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "run_at": "document_start", "all_frames": true, "js": [ "contentScript.js" ] } ] } |