Memrise Export
Export all words from a Memrise course to a CSV file.
什麼是Memrise Export?
Memrise Export是由Raine開發的Chrome擴展程式,該擴展的主要功能是“Export all words from a Memrise course to a CSV file.”。
擴展截圖
下載Memrise Export擴展crx文件
下載Memrise Export擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.)
擴展基本資訊
名稱 | |
ID | hcllgkpmoiolndnhmbdceffaidjmkoam |
官方網址 | https://chromewebstore.google.com/detail/memrise-export/hcllgkpmoiolndnhmbdceffaidjmkoam |
簡介 | Export all words from a Memrise course to a CSV file. |
檔案大小 | 11.28 KB |
安裝次數 | 1,172 |
目前版本 | 1.2.0 |
更新時間 | 2022-04-06 |
上架時間 | 2020-08-20 |
評分 | 4.30/5 共 10 次評分 |
開發者 | Raine |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/raineorshine/memrise-export |
說明頁面URL | https://github.com/raineorshine/memrise-export/issues |
支援的語言 | 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" } } |