How do I write an IE 8 Add-On in pure managed C#

雨燕双飞 提交于 2019-11-28 08:48:33

Ultimately, the C# will end up calling into IE8's COM functions. There's a framework called Spicie that makes this easier, and some other examples here: http://www.enhanceie.com/ie/dev.asp

Generally, it's a bad idea to write browser extensions in .NET because there's a severe performance impact, and there's the possibility of runtime collisions because only one version of .NET can be loaded into a process currently; if two addons want to use conflicting .NET versions, one will fail.

Miguel Angelo

This question is quite old now, but posting this just in case someone find it useful. =)

I have another answer here on SO about how to make IE 8 add-ins using C#:

How to get started with developing Internet Explorer extensions?

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!