Clownfish Voice Changer for Chrome

The ultimate voice changer for Chrome

Co to jest Clownfish Voice Changer for Chrome?

Clownfish Voice Changer for Chrome to rozszerzenie Chrome opracowane przez https://clownfish-translator.com, a jego główną funkcją jest „The ultimate voice changer for Chrome”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Clownfish Voice Changer for Chrome

Pobierz pliki rozszerzeń Clownfish Voice Changer for Chrome w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Clownfish Voice Changer for Chrome Clownfish Voice Changer for Chrome
ID dmgaboifbpokjbdcbnmkcohiondlampj
Oficjalny URL https://chromewebstore.google.com/detail/clownfish-voice-changer-f/dmgaboifbpokjbdcbnmkcohiondlampj
Opis The ultimate voice changer for Chrome
Rozmiar pliku 137 KB
Liczba instalacji 90,273
Aktualna Wersja 0.3
Ostatnia Aktualizacja 2023-12-08
Data Publikacji 2021-06-05
Ocena 3.10/5 Łącznie 99 Oceny
Deweloper https://clownfish-translator.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://clownfish-translator.com/voicechanger/
Adres URL Strony Pomocy https://clownfish-translator.com/voicechanger/
Obsługiwane Języki 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"
            ]
        }
    ]
}