您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Strip all but known-to-new language exercises from the timed practice of Duolingo.
// ==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); } } });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址