Clownfish Voice Changer for Chrome
The ultimate voice changer for Chrome
什么是Clownfish Voice Changer for Chrome?
Clownfish Voice Changer for Chrome是由https://clownfish-translator.com开发的Chrome扩展程序,该扩展的主要功能是“The ultimate voice changer for Chrome”。
扩展截图
下载Clownfish Voice Changer for Chrome扩展crx文件
下载Clownfish Voice Changer for Chrome扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Clownfish 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 | dmgaboifbpokjbdcbnmkcohiondlampj |
| 官方URL | https://chromewebstore.google.com/detail/clownfish-voice-changer-f/dmgaboifbpokjbdcbnmkcohiondlampj |
| 简介 | The ultimate voice changer for Chrome |
| 文件大小 | 137 KB |
| 安装次数 | 90,273 |
| 当前版本 | 0.3 |
| 更新时间 | 2023-12-08 |
| 上架时间 | 2021-06-05 |
| 评分 | 3.10/5 共99次评分 |
| 开发者 | https://clownfish-translator.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://clownfish-translator.com/voicechanger/ |
| 帮助页面URL | https://clownfish-translator.com/voicechanger/ |
| 支持的语言 | en |
| 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"
]
}
]
} | |