Eliminates second Enter or Click for correct review answers.
< 脚本Wanikani Lightning Mode的反馈
It looks working on the left top but it is not working anymore.
Same thing for me.
I've solved it for me locally by modifying the script this way:
line 127 instead of
$('#answer-form button').trigger(event);
I use
$('#answer-form button').click();
since line 125 and 126 are now not needed I removed them:
var event = $.Event('keydown');
event.keyCode = 13; event.which = 13; event.key = 'Enter';
Now it works again as intended
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址
It looks working on the left top but it is not working anymore.