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