Memrise: Make Me Type

This script replaces Memrise multiple-choice tests with typing

目前为 2015-01-10 提交的版本。查看 最新版本

// ==UserScript==
// @name           Memrise: Make Me Type
// @description    This script replaces Memrise multiple-choice tests with typing
//                 tests, where possible.
// @match          http://www.memrise.com/course/*/garden/*
// @match          http://www.memrise.com/garden/water/*
// @grant          none
// @run-at         document-start
// @version 0.0.1.20150110085506
// @namespace https://gf.qytechs.cn/users/8248
// ==/UserScript==

function convertMultipleChoiceToTyping(e) {
    // Always jump to grow session level 6.
    p = MEMRISE.garden.sessions.GrowSession.prototype.BoxFactory.prototype;
    p.make_at_level_1 = p.make_at_level_6;
    p.make_at_level_2 = p.make_at_level_6;
    p.make_at_level_3 = p.make_at_level_6;
    p.make_at_level_4 = p.make_at_level_6;
    p.make_at_level_5 = p.make_at_level_6;
}

document.addEventListener("afterscriptexecute", convertMultipleChoiceToTyping, true);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址