German Pronouncer Extension

Pronounce German words with a click of a button

Что такое German Pronouncer Extension?

German Pronouncer Extension - это расширение Chrome, разработанное https://deutsch-mentor.com, и его основная функция - "Pronounce German words with a click of a button".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения German Pronouncer Extension

Скачайте файлы расширений German Pronouncer Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Powered by Deutsch-Mentor.com, the AI platform to learn German online, German Pronouncer is a browser extension that enhances your German language experience by providing instant access to accurate pronunciation and translations. Whether you're learning German, traveling, or just want to understand the language better, this extension is here to assist you. 

With German Pronouncer, you can:

🔊 Listen to Pronunciation: Simply select a word or phrase and click the icon that appears, and you'll hear the correct German pronunciation.

📖 Translate Text: Choose a language, and the extension will translate the selected German text for you, bridging language barriers effortlessly.

⚙️ Customize Your Experience: Now available in 8 different languages, the settings menu allows you to tailor the extension to fit your needs.

The extension is intuitive, reliable, and an invaluable tool for anyone engaging with the German language. Speak and understand German with confidence, thanks to German Pronouncer.                    

Основная информация о расширении

Название German Pronouncer Extension German Pronouncer Extension
ID kmokknckpkkglmmbhmhobagnhpjmjnpm
Официальный URL https://chromewebstore.google.com/detail/german-pronouncer-extensi/kmokknckpkkglmmbhmhobagnhpjmjnpm
Описание Pronounce German words with a click of a button
Размер файла 102 KB
Количество установок 213
Текущая Версия 0.3.0
Последнее Обновление 2024-01-29
Дата публикации 2023-01-28
Рейтинг 4.80/5 Всего 5 оценок
Разработчик https://deutsch-mentor.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.deutsch-mentor.com/
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "German Pronouncer Extension",
    "description": "Pronounce German words with a click of a button",
    "version": "0.3.0",
    "icons": {
        "16": ".\/public\/icons\/icon16.png",
        "19": ".\/public\/icons\/icon19.png",
        "32": ".\/public\/icons\/icon38.png",
        "38": ".\/public\/icons\/icon38.png",
        "48": ".\/public\/icons\/icon48.png",
        "128": ".\/public\/icons\/icon128.png"
    },
    "background": {
        "service_worker": "dist\/background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_popup_script": "popup.js"
    },
    "permissions": [
        "tts",
        "ttsEngine",
        "contextMenus",
        "storage",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/translate.google.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dist\/content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "tts_engine": {
        "voices": [
            {
                "lang": "de-DE",
                "event_types": [
                    "start",
                    "marker",
                    "end"
                ]
            }
        ]
    }
}