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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | Clownfish Voice Changer for Chrome |
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" ] } ] } |