Memrise Speak
Speaks text on a memrise page where none was before
什么是Memrise Speak?
Memrise Speak是由Thomas Reese开发的Chrome扩展程序,该扩展的主要功能是“Speaks text on a memrise page where none was before”。
下载Memrise Speak扩展crx文件
下载Memrise Speak扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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!
扩展基本信息
名称 | |
ID | fkgkfjkhopaomimbplpkcdnpbgilmajg |
官方URL | https://chrome.google.com/webstore/detail/memrise-speak/fkgkfjkhopaomimbplpkcdnpbgilmajg |
简介 | Speaks text on a memrise page where none was before |
文件大小 | 20.29 KB |
安装次数 | 148 |
当前版本 | 1.2 |
更新时间 | 2015-01-05 |
上架时间 | 2015-01-05 |
评分 | 3.38/5 共8次评分 |
开发者 | Thomas Reese |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/Gibolt/MemriseSpeak |
支持的语言 | 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 } } |