VoiceX Voice Changer
The best voice changer extension
什么是VoiceX Voice Changer?
VoiceX Voice Changer是由TsunamiWind开发的Chrome扩展程序,该扩展的主要功能是“The best voice changer extension”。
扩展截图
下载VoiceX Voice Changer扩展crx文件
下载VoiceX Voice Changer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | |
ID | kppncmfckkjnadpobmfdncjcpnpelcbk |
官方URL | https://chrome.google.com/webstore/detail/voicex-voice-changer/kppncmfckkjnadpobmfdncjcpnpelcbk |
简介 | The best voice changer extension |
文件大小 | 132 KB |
安装次数 | 3,628 |
当前版本 | 0.4 |
更新时间 | 2023-03-12 |
上架时间 | 2021-10-13 |
评分 | 3.44/5 共9次评分 |
开发者 | TsunamiWind |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" ] } ] } |