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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    }
}