I'm trying to develop an IE BHO (Add-on) and I'm interested in adding an option to the context menu, but only if the right click occurs over a link.
Is this possible using SpicIE framework?
I've seen that the framework offers options to capture multiple events, but right click button is not on the list.
If this is not possible with SpicIE, I'll be glad to listen to any comments on alternative ways to achieve the goal.
You really should not use SpicIE for any production application. Your simplest bet would be to add a Context Menu extension; see http://msdn.microsoft.com/en-us/library/aa753589.aspx for details. Otherwise, you have to override IDocHostUIHandler, and it's an extremely non-trivial exercise.