Speak Thai

Reads out selected thai text

Speak Thai란 무엇입니까?

Speak Thai은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reads out selected thai text"입니다.

확장 프로그램 스크린샷

screenshot

Speak Thai 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}