// ==UserScript== // @name WaniKani All Info Expander // @namespace http://www.wanikani.com // @version 0.1 // @description Automatically click "Show All Information" // @author polv // @match *://www.wanikani.com/*/session* // @icon https://www.google.com/s2/favicons?sz=64&domain=wanikani.com // @grant none // ==/UserScript== (function () { 'use strict'; // Change to 'questionCount' for no matter right or wrong. $.jStorage.listenKeyChange('wrongCount', () => { setTimeout(() => { const elShowInfo = document.querySelector('#all-info'); if (elShowInfo) { elShowInfo.click(); } }, 1000); }); })();