Been away from WK for a while and need a quick refresher?
I know there are scripts and such, but a quick solution is to just open the kanji page (e.g. “pleasant”, “painful”) and put this into your developer console (F12 in Chrome)*:
ks = $('.subject-character--grid')
ks.each( (i, k) => {
const meaning = $(k).find('.subject-character__info')
$(meaning).css({'opacity': '0'})
$(k).on('mouseenter', _x => {
$(meaning).css({'opacity' : '1'})
})
$(k).on('mouseleave', _x => {
$(meaning).css({'opacity' : '0'})
})
})
It’ll hide the kanji meanings/readings until you hover over them, so you can quickly refresh
*normally you shouldn’t put random code into your browser, but I swear this is safe