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.」です。

拡張機能のスクリーンショット

screenshot

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.)                    

拡張機能の基本情報

名前 Memrise Export Memrise Export
ID hcllgkpmoiolndnhmbdceffaidjmkoam
公式URL 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
Eメール [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"
    }
}