views:

37

answers:

2

If I load new web page, the content of the old web page in net tab would all disappear.

Is there a way to make it persistent over different web page?

PS: I'm using Firebug 1.5.4.

Thanks in advance.

A: 

As much as I wish this was possible, I don't think it is. Even if you clear the activation list of everything except for 1 web page, when you change tabs Firebug disappears. Even if you have it open in a separate window, it blanks out and gives you an "Activate" button.

Derek
A: 

According to 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; 

Just as a note, If you are using Windows 7, the firebug extension directory path should be somethings like 'C:\Users\Jichao\AppData\Roaming\Mozilla\Firefox\Profiles\2dlypp9o.default\extensions\[email protected]\content\firebug'.

Jichao