如何为 Firefox、IE 和 Chrome 创建插件/附加组件
我需要为 IE、firefox 和 chrome 浏览器创建插件/附加组件,以满足以下要求:
如果请求的 url 是特定格式/匹配特定正则表达式模式,则插件必须阻止请求并弹出并显示警报框。
我进行了很多搜索,但没有找到任何有用的东西。对于IE,我认为我们可以为此目的创建BHO。但是有没有办法使用 javascript 来实现这一点呢?
提前致谢。
问候, 美极
I need to create plug-ins/add-ons for IE, firefox and chrome browsers for the following requirement:
If the url requested is in a particular format/ matching a particular regex pattern, the plugin has to block the request and pop up and alert box.
I have searched a lot but did not find anything helpful. For IE, I think we can create BHO for this purpose. But is there a way to achieve this using javascript?
Thanks in advance.
Regards,
Maggi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,对于您想要实现的行为,与 Firefox 和 Chrome 相比,IE 的插件开发仍然非常神秘。您必须为 IE 开发 BHO,而 Firefox 和 Chrome 都使用 Javascript 作为其插件平台。
http://www.enhanceie.com/ie/dev.asp 是一个很棒的有关如何开发 IE 扩展的更多信息的起点。
Unfortunately, IE's addon development is still very arcane compared to Firefox and Chrome for the behavior you're trying to accomplish. You'll have to develop a BHO for IE whereas both Firefox and Chrome use Javascript as their addon platform.
http://www.enhanceie.com/ie/dev.asp is a great starting place for more information on how to develop extensions for IE.