在 Mozilla Firefox Add-on 的overlay.js 中重新定义 XMLHTTPRequest
我正在构建一个 Firefox 扩展,并希望更改加载的每个页面的 XMLHTTPRequest 对象的行为。
我发现以下代码应该可以解决问题:
appcontent.addEventListener("load", function(event){
var original_xhr = XMLHttpRequest;
XMLHttpRequest = function () {
original_xhr();
alert ("I redefined this function");
}
alert ("Page loading");
} , true)
我已将这段代码添加到我的overlay.js 文件中。由于出现“页面加载”警报,因此加载事件正常工作。但 XMLHTTPRequest 不会被覆盖。
有谁知道出了什么问题吗?
I'm building a firefox extension and would like to change the behavior of the XMLHTTPRequest object for every page loaded.
I found following code which should do the trick:
appcontent.addEventListener("load", function(event){
var original_xhr = XMLHttpRequest;
XMLHttpRequest = function () {
original_xhr();
alert ("I redefined this function");
}
alert ("Page loading");
} , true)
I have added this piece of code to my overlay.js file. The load event works correctly, since the "page loading" alert shows up. But the XMLHTTPRequest is not overwritten.
Does anyone know what's wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我设法通过其他方式获取信息。拦截 httpchannel 后,我使用以下代码来查看请求是否源自 xhr 请求:
I managed to get the information via another way. After intercepting the httpchannel I used following code to see if the request originated from an xhr request: