The intellitxt remover is a simple javascript 'bookmarklet' that runs the following code:
javascript:(function()
{
    found = 1;
    cnt = 0;
    while (found == 1)
    {
        found = 0;
        t = document.body.getElementsByTagName('a');
        for (a = 0; a < t.length; a++)
        {
            c = t[a].getAttribute('class');
            if ((c && ((c == 'iAs') || (c == 'kText'))) || t[a].oncontextmenu)
            {
                found = 1;
                n = document.createElement('span');
                n.innerHTML = t[a].innerHTML.replace(/<[^<>]*>/gi, '');
                t[a].parentNode.replaceChild(n, t[a]);
                cnt++;
            }
        }
    }
    window.status = cnt+' links removed';
}());

All this does is look for suspicious links in the document and rip out the HTML tags for the link and any HTML tags within the link. This isn't particularly robust, but it is easy to do and relatively easy to understand, if you know basic javascript, a little about the DOM (Document Object Model) and simple relative expressions.

I don't know why I seem to need to loop through the document multiple times. Maybe some JavaScript/DOM expert can tell me. But there are more robust solutions for this problem out there. This is just an easy quick fix.