gSpeak

Speak the selection or webpage content.

O que é gSpeak?

gSpeak é uma extensão do Chrome desenvolvida por Sandip Chitale, e sua principal característica é "Speak the selection or webpage content.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão gSpeak

Baixe arquivos de extensão gSpeak no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome gSpeak gSpeak
ID ceeodfklkbgkhcnfglgkidpoookifcbd
URL Oficial https://chrome.google.com/webstore/detail/gspeak/ceeodfklkbgkhcnfglgkidpoookifcbd
Descrição Speak the selection or webpage content.
Tamanho do Arquivo 24.76 KB
Contagem de Instalações 235
Versão Atual 1.0
Última Atualização 2014-12-17
Data de Publicação 2014-12-17
Classificação 3.11/5 Total de 9 Avaliações
Desenvolvedor Sandip Chitale
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://sandipchitale.blogspot.com/2013/02/gspeak-chrome-extension.html
URL da Página de Ajuda http://sandipchitale.blogspot.com/2013/02/gspeak-chrome-extension.html
Idiomas Suportados 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"
}