Memrise Export
Export all words from a Memrise course to a CSV file.
¿Qué es Memrise Export?
Memrise Export es una extensión de Chrome desarrollada por Raine, y su función principal es "Export all words from a Memrise course to a CSV file.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Memrise Export
Descarga archivos de extensión Memrise Export 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
UPDATE 2022-04-06: Sadly, Memrise has removed the unofficial XHR API that Memrise Export used, so the extension no longer works. It may be possible to fetch and scrape the HTML, but this will take a dedicated effort. Feel free to contribute at https://github.com/raineorshine/memrise-export/issues. Thanks to everyone who used my extension. I hope it was a delightful and productive aide to your learning. UPDATE 2022-04-03: Memrise seems to have changed their API. This is causing a 404 error for many users. I will be investigating the issue soon. Thanks for your patience. You can track the issue here: https://github.com/raineorshine/memrise-export/issues/13 How to use: 1. Log into Memrise. 2. Navigate to the course page you would like to export (e.g. https://app.memrise.com/course/2156672/german-random-01/). 3. Click the "Memrise Export" extension toolbar button. 4. Save TSV* file with all words from the course. (Technically it exports TSV, or "tab separated file", which is generally compatible wherever CSV is.)
Información Básica de la Extensión
Nombre | |
ID | hcllgkpmoiolndnhmbdceffaidjmkoam |
URL Oficial | https://chromewebstore.google.com/detail/memrise-export/hcllgkpmoiolndnhmbdceffaidjmkoam |
Descripción | Export all words from a Memrise course to a CSV file. |
Tamaño del Archivo | 11.28 KB |
Cantidad de Instalaciones | 1,172 |
Versión Actual | 1.2.0 |
Última Actualización | 2022-04-06 |
Fecha de Publicación | 2020-08-20 |
Calificación | 4.30/5 Total de 10 Calificaciones |
Desarrollador | Raine |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/raineorshine/memrise-export |
URL de la Página de Ayuda | https://github.com/raineorshine/memrise-export/issues |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Memrise Export", "version": "1.2.0", "description": "Export all words from a Memrise course to a CSV file.", "manifest_version": 2, "permissions": [ "downloads", "activeTab", "https:\/\/app.memrise.com\/*" ], "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_popup": "popup.html" } } |