WhatsApp Speech-to-Text

Convert annoying voice messages on WhatsApp (web) to text using Google Cloud Speech-to-Text API

Co to jest WhatsApp Speech-to-Text?

WhatsApp Speech-to-Text to rozszerzenie Chrome opracowane przez muriloht, a jego główną funkcją jest „Convert annoying voice messages on WhatsApp (web) to text using Google Cloud Speech-to-Text API”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia WhatsApp Speech-to-Text

Pobierz pliki rozszerzeń WhatsApp Speech-to-Text 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

                        Convert annoying voice messages on WhatsApp (web) to text using Google Cloud Speech-to-Text API                    

Podstawowe informacje o rozszerzeniu

Nazwa WhatsApp Speech-to-Text WhatsApp Speech-to-Text
ID kbdaefkgikdjkiiapojefcdhpabijkod
Oficjalny URL https://chrome.google.com/webstore/detail/whatsapp-speech-to-text/kbdaefkgikdjkiiapojefcdhpabijkod
Opis Convert annoying voice messages on WhatsApp (web) to text using Google Cloud Speech-to-Text API
Rozmiar pliku 1.03 MB
Liczba instalacji 126
Aktualna Wersja 0.1.1
Ostatnia Aktualizacja 2020-06-03
Data Publikacji 2020-06-03
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper muriloht
Typ Płatności free
Strona Rozszerzenia https://github.com/muriloht/whatsapp-speech-to-text
Adres URL Strony Pomocy https://github.com/muriloht/whatsapp-speech-to-text
Obsługiwane Języki en-US,pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_chrome_extension_name__",
    "version": "0.1.1",
    "description": "__MSG_chrome_extension_description__",
    "default_locale": "en_US",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery.min.js",
                "content.js"
            ],
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ]
        }
    ],
    "homepage_url": "http:\/\/github.com\/muriloht\/whatsapp-speech-to-text",
    "options_page": "options.html",
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "permissions": [
        "storage"
    ],
    "short_name": "WASTT",
    "web_accessible_resources": [
        "loading.gif"
    ]
}