在 Mozilla Firefox Add-on 的overlay.js 中重新定义 XMLHTTPRequest

发布于 2024-10-31 07:26:26 字数 484 浏览 0 评论 0原文

我正在构建一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

痴者 2024-11-07 07:26:26

我设法通过其他方式获取信息。拦截 httpchannel 后,我使用以下代码来查看请求是否源自 xhr 请求:

try
{
    var callbacks = httpChannel.notificationCallbacks;
    if (callbacks) {
        var xhrInterface = callbacks.getInterface(Components.interfaces.nsIXMLHttpRequest);
        // XHR REQUEST
    }
}
catch (exc)
{
    if (exc.name == "NS_NOINTERFACE") {
        // NO XHR REQUEST
    }
}

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:

try
{
    var callbacks = httpChannel.notificationCallbacks;
    if (callbacks) {
        var xhrInterface = callbacks.getInterface(Components.interfaces.nsIXMLHttpRequest);
        // XHR REQUEST
    }
}
catch (exc)
{
    if (exc.name == "NS_NOINTERFACE") {
        // NO XHR REQUEST
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文