ActiveX or BHO (internet explorer)

此生再无相见时 提交于 2019-12-22 18:39:08

问题


I need some help from the browser plugin/extension gurus :)

Whats difference between BHO and activeX? Which one is harder?

My purpose is to inject 3rd party script.

Btw has IE something like localStorage in chrome and ff?

Thanks


回答1:


BHOs are loaded into the IE process at startup and are always running. ActiveX controls are webpage specific objects loaded on demand by a given page and their lifetime is tied to the lifetime of the document. Both are COM objects.

They are equally hard for different reasons.

Either one can inject script, but my guess is you want a BHO.

IE added support for web storage in version 8.



来源:https://stackoverflow.com/questions/9342130/activex-or-bho-internet-explorer

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