VoiceX Voice Changer
The best voice changer extension
ما هو VoiceX Voice Changer؟
VoiceX Voice Changer هو إضافة Chrome تم تطويرها بواسطة TsunamiWind، والميزة الرئيسية لها هي "The best voice changer extension".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة VoiceX Voice Changer
قم بتنزيل ملفات الامتداد VoiceX Voice Changer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } ] } |