您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Stops Wanikani from marking answers that are 'a bit off' as correct, makes you try again until you are right or wrong.
当前为
// ==UserScript== // @name WK But No Cigar // @namespace http*//www.wanikani.com/review/session // @version 0.8 // @description Stops Wanikani from marking answers that are 'a bit off' as correct, makes you try again until you are right or wrong. // @author Ethan // @match http*://www.wanikani.com/review/session* // @match http*://www.wanikani.com/lesson/session* // @grant none // ==/UserScript== function main(){ var alertText = "Close, but no cigar! Please try again"; var MutationObserver = window.MutationObserver || window.WebKitMutationObserver || window.MozMutationObserver; doit(); function logMutations(){ var observer = new MutationObserver(function (mutations) { // iterate over mutations.. mutations.forEach(function (mutation) { if (mutation.addedNodes.length>0){ if(mutation.addedNodes.item(0).classList){ if(mutation.addedNodes.item(0).classList.contains("answer-exception-form")){ mutation.addedNodes.item(0).innerHTML=mutation.addedNodes.item(0).innerHTML.replace(/WaniKani is looking for the [a-zA-Z']+ reading/, alertText); observer.disconnect(); }} } }); var highLanders = document.querySelectorAll("#answer-exception"); if (highLanders.length > 1){ // There can be only one!!! for (hL=1; hL<highLanders.length; hL++){ highLanders[hL].parentNode.removeChild(highLanders[hL]) } } }); var settings = { childList: true, subtree: true, attributes: false, characterData: false } observer.observe(document.body, settings); } // select the target node function doit(){ console.log("doit"); answerChecker.oldEvaluate = answerChecker.evaluate; //stops the code from submitting the answer console.log("wrap answerChecker"); answerChecker.evaluate = function(e,t){ result = answerChecker.oldEvaluate(e,t); if (result.passed === !0 && result.accurate === !1){ result.exception = !0; logMutations(); } return result; }; } } var script = document.createElement('script'); script.appendChild(document.createTextNode('('+ main +')();')); (document.body || document.head || document.documentElement).appendChild(script);