您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This script converts Memrise multiple-choice tests to typing
当前为
// ==UserScript== // @name Memrise: Make Me Type // @description This script converts Memrise multiple-choice tests to 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.20150109085044 // @namespace https://greasyfork.org/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);