Firebug: How to make net tab stand?

If I load a new web page, the contents of the old web page in a blank tab will disappear.

Is there a way to make this persistent on another webpage?

PS: I am using Firebug 1.5.4.

Thanks in advance.

+5
source share
3 answers

According to Jan Odvarko :

This is 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; 

As a note. If you are using Windows 7, the path to the firebug extension directory should be something like "C: \ Users \ Jichao \ AppData \ Roaming \ Mozilla \ Firefox \ Profiles \ 2dlypp9o.default \ extensions \ firebug @ software.joehewitt.com \ contents arsonist.

+1
source

, , , . , 1 -, Firebug . , "".

0

Firebug 1.7.a3 + supports this out of the box.

It is still in alpha stage, but available for installation:

http://getfirebug.com/downloads

0
source

All Articles