Rucha Цитата: Как в 8-ке включить отображение заголовка текущей страницы в заголовке окна браузера?
.расширения
Ссылка Ссылка Ссылка и т.д
.стилями [more=например]в about:config
переключить параметр
browser.tabs.drawInTitlebar в false и в userChrome.css добавить стиль
Код: @media all and (-moz-windows-classic){
#main-window:after
{top: -13px !important;
text-shadow: none !important; }
}
@media all and (-moz-windows-theme: aero){
#main-window:after
{top: -7px !important;
font-weight: normal !important;
text-shadow: none !important; }
}
#main-window:after
{content: attr(title) !important;
line-height: 50px !important;
max-height: 50px !important;
overflow: -moz-hidden-unscrollable !important;
padding: 0 113px 0 103px !important;
pointer-events: none !important;
position: fixed !important;
text-align: center !important;
word-wrap: break-word !important;
-moz-hyphens: auto !important;
font-weight: bold !important;
color: CaptionText !important;
left: 0 !important; }
#main-window:-moz-window-inactive:after
{color: InactiveCaptionText !important; }