(Yes, yes, I shouldn't use regexps. Alternate solutions are most welcome!)
I'm trying to customize my view of a web page I use a lot, using GreaseMonkey to filter out things I don't want to see.
Basically, the pages contain a lot of links that look like this:
<a class="foo" href="blah">Text</a>
and I'd prefer them to look like this:
Text<a class="foo" href="blah">[?]</a>
so that I stop clicking on the links accidentally.
Sadly, my javascript knowledge is negligible, and I'm not sure how to procede.