gSpeak
Speak the selection or webpage content.
¿Qué es gSpeak?
gSpeak es una extensión de Chrome desarrollada por Sandip Chitale, y su función principal es "Speak the selection or webpage content.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión gSpeak
Descarga archivos de extensión gSpeak en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | ceeodfklkbgkhcnfglgkidpoookifcbd |
URL Oficial | https://chrome.google.com/webstore/detail/gspeak/ceeodfklkbgkhcnfglgkidpoookifcbd |
Descripción | Speak the selection or webpage content. |
Tamaño del Archivo | 24.76 KB |
Cantidad de Instalaciones | 235 |
Versión Actual | 1.0 |
Última Actualización | 2014-12-17 |
Fecha de Publicación | 2014-12-17 |
Calificación | 3.11/5 Total de 9 Calificaciones |
Desarrollador | Sandip Chitale |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | http://sandipchitale.blogspot.com/2013/02/gspeak-chrome-extension.html |
URL de la Página de Ayuda | http://sandipchitale.blogspot.com/2013/02/gspeak-chrome-extension.html |
Idiomas Soportados | 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" } |