Speak Thai

Reads out selected thai text

什麼是Speak Thai?

Speak Thai是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Reads out selected thai text”。

擴展截圖

screenshot

下載Speak Thai擴展crx文件

下載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
官方網址 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"
    }
}