[Userscript] Wanikani Leaderboard

Hello,
I installed this app today. I can see it on the page but I can not click the “+” button to add users. Do you know a solution for this? (I am using Firefox)

I’ll see if I can’t find out what the problem is, but for now as a workaround you should be able to add users by clicking ‘Menu’ in the top right of your dashboard and then ‘Settings’ → ‘Leaderboard’.

I do not see “leaderboard” in the settings :sob:

There are two ‘Settings’ options in the menu, one under ‘SCRIPTS’ and one under ‘ACCOUNT’. Did you click the right one?

menu_settings

I do not have this one. I have installed “wanikani open framework” and “wanikani leaderboard” and I can only see thing below level progression on the main screen. On this thing is written “You haven’t added any users yet. Use (+) to add users.” but I can not click the plus.

With @MissMisc recent achievement of burning all wanikani review items, can we maybe add a special colour/icon/symbol for this?

2 Likes

The script already shows percentage of burned items for levels 51 to 60

1 Like

I know, I just thought it would be fun to have a special yay! thing or something
Like a golden bar instead of a yellow-y one.
Or changing 現実 into 完全 or something idk.

1 Like

Something like that already exists and is described hidden in the log:

And it would look something like this:
100%25%20burned%20trophy

In order to get the trophy I set it so you need to burn 8808 items, which is the total amount of items i’m getting from wkstats, MissMisc has 8789.

MissMisc does say something about being pre-wk content overhaul and their subscription running out, which is maybe why they are 19 items short. Those 19 items maybe only recent additions and therefore haven’t had the time to be burned by anybody yet.

3 Likes

It’s possible that the number from wkstats is wrong, especially if it’s the old wkstats and not the new one at https://wkstats.com:10001 because @rfindley made the old wkstats with static items (instead of dynamic from APIv2).

Another possibility is that @MissMisc burned an item that was later removed from WK. This will also skew the numbers a bit.

1 Like

No, MissMisc just didn’t bother with the new lessons from the content overhaul. I remember seeing a screenshot where she had lessons available.

Edit: but not for long, since her dashboard now says she has 19 apprentice items. Gotta burn everything!

4 Likes

:rofl: I want to join your @MissMisc stalkers club!

4 Likes

There you go.

3 Likes

image

7 Likes

I’m having difficulty installing this. Its saying “…user scripts cannot be be added from this website”

Do you have a script handler (such as tampermonkey) or are you installing directly into the browser?

1 Like

I guess I was just trying to install it directly. I dont think I use any script handlers. I wonder if its compatible with the Brave browser.

I think Chrome extensions are supposed to be compatible with Brave, but I don’t know if the scripts themselves would work

Heya, small question

I want to congratulate people in two separate race to the cake threads, but it’s getting a bit confuzzling to find out who belongs to which thread. Is it possible to add a way to give individuals certain markers, so I know who is who?

1 Like

To make the leaderboard visible in the new style

switch out line 1184

        $('section.progression').after(leaderboardTableStyle);

with

        if ($('section.progression').length) {
            $('section.progression').after(leaderboardTableStyle);
        }
        else {
            $('section.srs-progress').after(leaderboardTableStyle);
        }

this update will work for both the current and new style dashboard.

9 Likes