Showing Of Verbs

hello there!!

I finally have the time to continue learning Japanese. The actual lesson will teach me how to conjugate informal verbs, so I thought it would be nice to have a list of all verbs I’ve learned through WaniKani so far.

so my question is: is it possible to show them anywhere here or is there a Plug-In I could use?

1 Like

Download wkof (Installing Wanikani Open Framework)
Open the debug console (usually F12)
Paste in this piece of code and run it:

wkof.include("ItemData")
wkof.ready("ItemData").then(async () => {
  let items = await wkof.ItemData.get_items({wk_items: {filters: {level:"1..+0"}}});
  items = items
    .filter(x => x.object === "vocabulary")
    .filter(x => x.data.meanings.find(x => x.meaning.startsWith("To ")))
    .map(x => x.data.meanings.map(m => m.meaning).join(", ") + ";" + x.data.characters + ";" + x.data.readings.map(r => r.reading).join(", "))
    .join("\n")
  console.log(items);
})

It will result in a list of verbs, kanji and readings, separated by a semicolon, so you can take it and paste it into for example excel or equivalent using the pasting wizard

Edit: Fixed up the code a bit, because it includes stuff like adverbs

6 Likes

wow, this is awesome!! thank you so much!! :innocent: :heart:

1 Like

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.