Udemy translate & speech

A Chrome extension that translates subtitles of Udemy content and reads them out with a synthetic voice.

Udemy translate & speech क्या है?

Udemy translate & speech ttyohr द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension that translates subtitles of Udemy content and reads them out with a synthetic voice."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Udemy translate & speech एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        ## Features

- Automatic translation of Udemy video subtitles to the user's preferred language
- Caption display of translated subtitles
- Playback of the translated subtitles using synthesized speech
- Customizable settings for language preferences and voice options

## Translation Languages
- German (Germany)
- French (France)
- French (Canada)
- Italian (Italy)
- Japanese (Japan)
- Korean (Korea)
- Russian (Russia)
- Spanish (Spain)
- Turkish (Turkey)
- Ukrainian (Ukraine)
- Chinese (Simplified) }
- Chinese (Traditional)
- Hindi (Hindi)
- Arabic (Arabic)
- Portuguese (Brazil)
- Portuguese (Portugal)
- Bengali (Bangladeshi)
- Filipino (Philippines)
- Indonesian (Indonesia)
- Vietnamese(Vietnam)                    

एक्सटेंशन की मूल जानकारी

नाम Udemy translate & speech Udemy translate & speech
ID deajnmcnjlonmjkaibbiflnmihlmbdbc
आधिकारिक URL https://chromewebstore.google.com/detail/udemy-translate-speech/deajnmcnjlonmjkaibbiflnmihlmbdbc
विवरण A Chrome extension that translates subtitles of Udemy content and reads them out with a synthetic voice.
फ़ाइल का आकार 442 KB
स्थापना संख्या 514
वर्तमान संस्करण 1.4.0
अंतिम अपडेट 2023-11-29
प्रकाशन तिथि 2023-04-30
रेटिंग 3.78/5 कुल 9 रेटिंग्स
डेवलपर ttyohr
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/tetsuyaohira/udemy-translate-speech
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Udemy translate & speech",
    "description": "A Chrome extension that translates subtitles of Udemy content and reads them out with a synthetic voice.",
    "version": "1.4.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "action\/popup.html",
        "default_icon": {
            "16": "images\/img16.png",
            "32": "images\/img32.png",
            "48": "images\/img48.png",
            "128": "images\/img128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.udemy.com\/course\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/img16.png",
        "32": "images\/img32.png",
        "48": "images\/img48.png",
        "128": "images\/img128.png"
    }
}