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