Duolingo Known-to-New Practice

Strip all but known-to-new language exercises from the timed practice of Duolingo.

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Duolingo Known-to-New Practice
// @namespace    unkkatkumiankka
// @version      0.1
// @description  Strip all but known-to-new language exercises from the timed practice of Duolingo.
// @author       unkkatkumiankka
// @match        https://www.duolingo.com/*
// @grant        none
// @require      https://cdnjs.cloudflare.com/ajax/libs/xhook/1.3.5/xhook.min.js
// @run-at       document-start
// ==/UserScript==

xhook.after(function(request,response){
    if(typeof request.url != 'undefined'){
        if(request.url.indexOf('global_practice') !== -1){
            injson = JSON.parse(response.text);
            var elems = injson.session_elements;
            var i=0;
            while(i<elems.length){
                if(elems[i].specific_type != 'reverse_translate'){
                    elems.splice(i,1);
                }else{
                    i++;
                }
            }
            response.text = JSON.stringify(injson);
        }
    }
});