gSpeak
Speak the selection or webpage content.
Qu'est-ce que gSpeak ?
gSpeak est une extension Chrome développée par Sandip Chitale, et sa fonction principale est "Speak the selection or webpage content.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension gSpeak
Téléchargez les fichiers d'extension gSpeak 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
Click on the Speak button in the toolbar to speak the text selection in the webpage. If there is no text selection in the webpage, the webpage content is spoken. While the speech is in progress, the badge on the button shows the remaining percentage of the text to be spoken. Clicking on the button pauses the speech. Once paused, if you click on the button within one second the speech is cancelled. After one second, clicking on the button resumes the speech. Some voices may not support the event to indicate a word was spoken. Therefore it may not be possible to show the remaining percentage badge. Choose a different voice using options.
Informations de Base sur l'Extension
Nom | |
ID | ceeodfklkbgkhcnfglgkidpoookifcbd |
URL Officiel | https://chrome.google.com/webstore/detail/gspeak/ceeodfklkbgkhcnfglgkidpoookifcbd |
Description | Speak the selection or webpage content. |
Taille du Fichier | 24.76 KB |
Nombre d'Installations | 235 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2014-12-17 |
Date de Publication | 2014-12-17 |
Évaluation | 3.11/5 Total 9 Évaluations |
Développeur | Sandip Chitale |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://sandipchitale.blogspot.com/2013/02/gspeak-chrome-extension.html |
URL de la Page d'Aide | http://sandipchitale.blogspot.com/2013/02/gspeak-chrome-extension.html |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "gSpeak", "version": "1.0", "manifest_version": 2, "description": "Speak the selection or webpage content.", "icons": { "16": "play.png", "48": "play48.png", "128": "play128.png" }, "background": { "scripts": [ "background.js" ] }, "options_page": "options.html", "browser_action": { "default_title": "Speak", "default_icon": "play.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "all_frames": false, "js": [ "content_script.js" ] } ], "permissions": [ "tabs", "tts", "http:\/\/*\/*", "https:\/\/*\/*" ], "minimum_chrome_version": "14" } |