Memrise Speak
Speaks text on a memrise page where none was before
O que é Memrise Speak?
Memrise Speak é uma extensão do Chrome desenvolvida por Thomas Reese, e sua principal característica é "Speaks text on a memrise page where none was before".
Baixar o arquivo CRX da Extensão Memrise Speak
Baixe arquivos de extensão Memrise Speak 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
This extension will make any Memrise test without audio speak vocabulary using TTS. This is an absolute alpha test, and more updates will be coming. It is quickly becoming much more general, please give me feedback and suggestions to speed the process. If it isn't working properly for a course, simply go into the popup, uncheck 'Active', and 'Save'. Update 1.2: Much more reliable to speak desired text. Language is auto-selected, but can be manually selected as well in popup on a per-course-basis. Update 1.1: Now will try to detect language and use that, not perfect yet. Will not speak if audio already exists. Extension can be temporarily deactivated, and speaking rate/volume adjusted by clicking icon. Thank you for downloading, Enjoy learning!
Informações Básicas da Extensão
Nome | |
ID | fkgkfjkhopaomimbplpkcdnpbgilmajg |
URL Oficial | https://chrome.google.com/webstore/detail/memrise-speak/fkgkfjkhopaomimbplpkcdnpbgilmajg |
Descrição | Speaks text on a memrise page where none was before |
Tamanho do Arquivo | 20.29 KB |
Contagem de Instalações | 148 |
Versão Atual | 1.2 |
Última Atualização | 2015-01-05 |
Data de Publicação | 2015-01-05 |
Classificação | 3.38/5 Total de 8 Avaliações |
Desenvolvedor | Thomas Reese |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/Gibolt/MemriseSpeak |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Memrise Speak", "description": "Speaks text on a memrise page where none was before", "version": "1.2", "icons": { "16": "memrise.png", "128": "memrise.png" }, "browser_action": { "default_title": "Memrise Speaks", "default_icon": "memrise.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/www.memrise.com\/course\/*\/garden\/grow\/", "http:\/\/www.memrise.com\/course\/*\/garden\/water\/", "http:\/\/www.memrise.com\/course\/*\/garden\/overwater\/", "http:\/\/www.memrise.com\/course\/*\/garden\/review\/", "http:\/\/www.memrise.com\/course\/*\/garden\/review-difficult-things\/" ], "js": [ "globalFunctions.js", "main.js" ] } ], "permissions": [ "tts", "storage" ], "background": { "scripts": [ "tts.js" ], "persistent": false } } |