Is there any script which displays the actual number for Kanji/Vocab Progression on the profile page, instead of just a bar between 0 and the max number?
I donât think there is any script for profile page. You can just look at wkstats
I created a fun project here: WaniKani Profile Beautifier
Please let me know if it doesnât workâŠ
Should be fixed now. I forgot that I have already done all words. Only if I have somebody elseâs apiKey.
The bars did get fixed, but Iâm getting a 0 in the supposedly progress percentage
Also, the numbers in the burned bar are getting cut, but thatâs not really important
Thanks for creating a script at such a short notice.
I wish I knew how to script, so I could change it according to my needs.
Actually, I donât need anything like displaying the different Kanji SRS levels on the progress bars (since I can just hover over above to get the values anyway). What I wanted was just a black bar, with my total amount of non-apprentice Kanji/Vocab maybe similar to this
.Is there a way to change into this by some minor modification of your script?
Line 38 from
$('.kanji-progress .progress').html(html_array.reverse().join(''));
to
$('.kanji-progress .progress').html('<div class="bar-supplemental" style="text-align: right; float:left; width: ' + (total_count - data.requested_information.apprentice.kanji)/$('.kanji-progress .total').text()*100 + '%; background-color:black"><span class="beautifier_box"">'+ (total_count - data.requested_information.apprentice.kanji) + '</span></div>');
and Line 53, from
$('.vocabulary-progress .progress').html(html_array.reverse().join(''));
to
$('.vocabulary-progress .progress').html('<div class="bar-supplemental" style="text-align: right; float:left; width: ' + (total_count - data.requested_information.apprentice.vocabulary)/$('.vocabulary-progress .total').text()*100 + '%; background-color:black"><span class="beautifier_box"">'+ (total_count - data.requested_information.apprentice.vocabulary) + '</span></div>');
Thanks a lot. It works like a charm!
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.