Speak Thai

Reads out selected thai text

ما هو Speak Thai؟

Speak Thai هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Reads out selected thai text".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Speak Thai

قم بتنزيل ملفات الامتداد Speak Thai بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Simple extension which uses Google text to speech to speak selected text in Thai. 

Handy if you can understand spoken Thai but cant read the Thai script. 

Instructions: 

1) Select Thai text 
2) Right click 
3) Choose "Speak Thai" from context menu

You can also select text and use keyboard shortcut 

control+alt+s (windows) 
command+alt+s (mac)

Notes: 

- Currently only works on short bits of text. 
- Uses tts from Google translate

Source code:

https://github.com/luke/speak-thai-chrome-extension                    

معلومات أساسية عن التمديد

الاسم Speak Thai Speak Thai
ID hgkdkfekclpieaclmlpfgmefdmhfccan
عنوان URL الرسمي https://chromewebstore.google.com/detail/speak-thai/hgkdkfekclpieaclmlpfgmefdmhfccan
الوصف Reads out selected thai text
حجم الملف 16.12 KB
عدد التثبيتات 783
النسخة الحالية 0.1
آخر تحديث 2013-01-16
تاريخ النشر 2013-01-16
تقييم 2.95/5 مجموع تقييمات 39
المطور Unknown
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Speak Thai",
    "description": "Reads out selected thai text",
    "version": "0.1",
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "speak-thai.js"
        ]
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}