Speak Thai

Reads out selected thai text

Qu'est-ce que Speak Thai ?

Speak Thai est une extension Chrome développée par Unknown, et sa fonction principale est "Reads out selected thai text".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Speak Thai

Téléchargez les fichiers d'extension Speak Thai au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Speak Thai Speak Thai
ID hgkdkfekclpieaclmlpfgmefdmhfccan
URL Officiel https://chromewebstore.google.com/detail/speak-thai/hgkdkfekclpieaclmlpfgmefdmhfccan
Description Reads out selected thai text
Taille du Fichier 16.12 KB
Nombre d'Installations 783
Version Actuelle 0.1
Dernière Mise à Jour 2013-01-16
Date de Publication 2013-01-16
Évaluation 2.95/5 Total 39 Évaluations
Développeur Unknown
Type de Paiement free
Langues Prises en Charge 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"
    }
}