Memrise Export

Export all words from a Memrise course to a CSV file.

Что такое Memrise Export?

Memrise Export - это расширение Chrome, разработанное Raine, и его основная функция - "Export all words from a Memrise course to a CSV file.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Memrise Export

Скачайте файлы расширений 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
Электронная почта [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"
    }
}