Memrise Export

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

Memrise Export क्या है?

Memrise Export Raine द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Export all words from a Memrise course to a CSV file."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Memrise Export एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}