Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebug : How to make net tab persistent?

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.

like image 915
Jichao Avatar asked Nov 15 '22 07:11

Jichao


1 Answers

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'.

like image 92
Jichao Avatar answered Dec 31 '22 06:12

Jichao