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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 } } |