OakleyHippo Elements when removed through jQuery will reappear when Mithril redraws its interface. You'll want to delete elements by changing the vnodes.
extend(ExtensionsPage.prototype, 'view', (vnode) => {
vnode.children // do stuff to this
});
You can view examples of modifying elements in a few fof extensions, including fof/discussion-thumbnail, and fof/geoip.
You'd probably delete the element by finding its index and using .splice
(I think?). The best way of finding how the vnode object looks is simply by logging it to the console with console.log(vnode);
and at every step while you get deeper in the virtual DOM chain.
Hope this made sense. I know it's a bit confusing but it's the best way to do it.