ActiveX 或 BHO(互联网浏览器)
我需要浏览器插件/扩展专家的帮助:)
BHO 和 activeX 之间有什么区别?哪一个更难?
我的目的是注入第三方脚本。
顺便说一句,IE 浏览器和 ff 中有类似 localStorage 的东西吗?
谢谢
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
BHO 在启动时加载到 IE 进程中并始终运行。 ActiveX 控件是由给定页面按需加载的网页特定对象,它们的生命周期与文档的生命周期相关。两者都是 COM 对象。
由于不同的原因,它们同样困难。
任何一个都可以注入脚本,但我猜你想要一个 BHO。
IE 在版本 8 中添加了对 Web 存储的支持。
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.