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