如何在 Mozilla 加载和解析 HTML 之前对其进行预处理?
我需要一种在 Mozilla 实际加载和解析 HTML 之前对其进行处理的方法。我可以在 Firefox 扩展中使用任何内容侦听器吗?
I need a way to process HTML before it's actually loaded and parsed by Mozilla. Is there any content listener that I can use in my Firefox extension?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将 事件监听器 添加到 gBrowser 全局对象,确保将 usecapture 设置为 true。您还可以拦截响应。
Add an Event Listener to the gBrowser global object, making sure to set usecapture to true. You could also intercept the response.
你的意思是像greasemonkey之类的东西吗?抱歉,我对 Firefox 扩展了解不够。 Greasemonkey 网站在中国被屏蔽,我的 VPN 目前无法使用,但也许它们是开源的。如果你不想要编写一个greatmonkey脚本,那么你可以看看他们做了什么。
Do you mean something like greasemonkey? Sorry, I don't know enough about Firefox extensions. The Greasemonkey website is blocked here in China and my VPN does not work at the moment, but maybe they are open source. Then you can see what they do, if writing a greasemonkey skript is not what you want.