[Userscript] Fast Vocab Breakdown


I might have to pick a different name. It feels like my userscript does the same as yours, except yours is just faster :joy:

Added (including image radicals)

Added, although the breakdowns are not styled as links, so they don’t look any different.

I have a “specific item” preset in Reorder Omega that I use for testing stuff. Very useful now that Omega’s self study has the same code base as regular reviews.

I have a separate script with the WKOF filter for it

    wkof.ItemData.registry.sources.wk_items.filters.specific_item = {
        type: 'text',
        label: 'Specific Item',
        default: '',
        filter_func: (value, item) => {
            if (!value) return true;
            return item.data.characters === value
        }
    }