Firefox, show link URLs in status bar?
Going in the same order as above...
Show the URL over the Add-on Bar:
-
Using Stylish or userChrome.css, define the following CSS:
statuspanel { z-index: 1 !important; bottom: 1px !important; } toolbar#addon-bar { z-index: 0 !important; }
With some extra tweaking, the final result can look like this (Windows 7):
label.statuspanel-label
{
padding-top: 0 !important;
padding-bottom: 0 !important;
border: 0 !important;
background-image: none !important;
background-color: #cedaeb !important;
color: #000000 !important;
}
Remove the delay and transition:
Set the
browser.overlink-delay
preference inabout:config
to 0. Restart Firefox.-
Define the following CSS:
statuspanel[type=overLink], statuspanel[inactive][previoustype=overLink] { -moz-transition: none !important; }
Allow URLs to span the whole width of the window:
-
Define the following CSS:
statuspanel { max-width: 100% !important; }
Bonus:
If you are going to use the Add-on Bar as a permanent fixture, you can hide it's close button with:
toolbarbutton#addonbar-closebutton
{
display: none !important;
}
Copy & Paste
Here is the combined CSS, sans Windows 7 theme:
statuspanel
{
z-index: 1 !important;
bottom: 1px !important;
max-width: 100% !important;
}
toolbar#addon-bar
{
z-index: 0 !important;
}
statuspanel[type=overLink], statuspanel[inactive][previoustype=overLink]
{
-moz-transition: none !important;
}
toolbarbutton#addonbar-closebutton
{
display: none !important;
}