German Pronouncer Extension

Pronounce German words with a click of a button

German Pronouncer Extension란 무엇입니까?

German Pronouncer Extension은(는) https://deutsch-mentor.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Pronounce German words with a click of a button"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

German Pronouncer Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
                ]
            }
        ]
    }
}