javascript - Firebug : How to make net tab persistent?

标签 javascript debugging firefox firebug

如果我加载新的网页,网络选项卡中旧网页的内容将全部消失。

有没有办法让它在不同的网页上持久化?

PS:我使用的是 Firebug 1.5.4。

提前致谢。

最佳答案

根据 Jan Odvarko :

It's because of the following code in tabWatcher.js

// xxxHonza, xxxJJB: web application detection. Based on domain check.
var prevDomain = persistedState ? getDomain(persistedState.location) :
null;
var domain = getDomain(location);
if (!persistedState || prevDomain != domain)
    persistedState = null;

If following is commented out, it works.
//if (!persistedState || prevDomain != domain)
//    persistedState = null; 

请注意,如果您使用的是 Windows 7,则 firebug 扩展目录路径应该类似于 'C:\Users\Jichao\AppData\Roaming\Mozilla\Firefox\Profiles\2dlypp9o.default\extensions\firebug@ software.joehewitt.com\content\firebug'。

关于javascript - Firebug : How to make net tab persistent?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3838977/

相关文章:

javascript - Jquery 列生成器插件 : 40 times faster in Windows Firefox. 为什么?

javascript - 在调整浏览器大小之前,平铺图像的脚本不会初始化

javascript - html 将整个 Canvas 旋转90度

c# - 调试:Microsoft JScript 运行时错误

firefox - 有谁知道是否有 Chrome 插件可以让 FireFox 扩展在 Chrome 中工作?

javascript - 如何在 Firefox 插件上使用 jQuery 1.5.2+?

javascript - KnockoutJS + polymer : bindings break (Outside of Chrome)

javascript - 如何在不打开新窗口的情况下使用 JavaScript 在 FULLSCREEN 中打开主页?

debugging - .emacs 中的 set-frame-height 没有任何效果

c - 如果该数据仅在 C 函数返回时可用,如何使用 LLDB 自动捕获输出数据?