Wanikani Double-Check

Allows retyping typo'd answers, or marking wrong when WK's typo tolerance is too lax.

< 脚本Wanikani Double-Check的反馈

评价:好评 - 脚本运行良好

§
发表于:2024-08-29

I was looking into the code to see if there's any keyboard shortcut for the lightning mode, and I saw that there was a ctrl+L somewhere, but there are lots of conditions to it, state=second_submit for example, and this shortcut at least on my firefox sends me to the URL input box.
Even if all conditions are met, there's a bug since it's not passing the event into the lightning_clicked method.

I changed it a bit just so I could have F8 as my shortcut no matter the state:

        function handle_retype_hotkey(event){
            if (event.key === 'F8') {
                        event.preventDefault();
                        event.stopPropagation();
                        lightning_clicked(event);
            } else if (state !== 'first_submit') {
                if (!document.querySelector('#wkofs_doublecheck') && (event.target === input || event.target === document.body)) {
                    if ((event.which === 27 || event.which === 8)) {
                        toggle_result('retype');
                        event.preventDefault();
                        event.stopPropagation();
                    }
                }
            }
        };

发表回复

登录(不可用)以发表回复。

QingJ © 2025

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