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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ttyohr และคุณลักษณะหลักของมันคือ "A Chrome extension that translates subtitles of Udemy content and reads them out with a synthetic voice."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Udemy translate & speech

ดาวน์โหลดไฟล์ส่วนขยาย Udemy translate & speech ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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