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"
    }
}