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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

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