阅读:3208回复:5
firefox3.0.1关于标题显示的问题
我用的是firefox3.0.1,最近发现一个问题,比如打开百度,输入http://www.baidu.com,然后标签上显示的就是http://www.baidu.com/,而不是“百度一下,你就知道”,firefox窗口最上面的标题栏也只是Mozilla Firefox,正常的应该是"百度一下,你就知道 - Mozilla Firefox",但是重新输入两三次网址,就会正常,打开其他网站有时也会出现这个问题,但有时不会,如何解决?
|
|
1楼#
发布于:2008-08-10 21:46
搭车问下,如何在非全屏状态下隐藏FF的标题栏?
|
|
|
2楼#
发布于:2008-08-10 21:46
盘儿净:搭车问下,如何在非全屏状态下隐藏FF的标题栏?回到原帖 最大化下隐藏标题栏,用鼠标手势执行代码 function hideChrome() { if (navigator.platform == "Win32") { window.moveTo(0,0); window.maximize(); document.getElementById("main-window").setAttribute('hidechrome','true'); // preserve small area for taskbar to appear window.resizeTo(screen.availWidth, screen.availHeight-2); } else { document.getElementById("main-window").setAttribute('hidechrome','true'); window.moveTo(0,0); window.resizeTo(screen.availWidth, screen.availHeight); window.maximize(); } } // COMMENT OUT THE NEXT LINE TO START BROWSER NORMALLY hideChrome(); this.leftclick = function(evt){ function showChrome() { if (navigator.platform == "Win32") { document.getElementById("main-window").setAttribute('hidechrome','false'); window.resizeTo(screen.availWidth, screen.availHeight); window.maximize(); window.resizeTo(screen.availWidth, screen.availHeight); } else { document.getElementById("main-window").setAttribute('hidechrome','false'); window.maximize(); window.maximize(); } } function toggleChrome() { var mainWindow = document.getElementById("main-window"); var isFullScreen = mainWindow.getAttribute('hidechrome'); if (isFullScreen == "" || isFullScreen == 'false') { hideChrome(); } else { showChrome(); } } toggleChrome(); } this.setAttribute('onclick', 'gQuot(event, this)'); // Calls the Global MouseClick handler gQuot this.style.opacity = '.65'; this.setAttribute('onmouseover', 'custombuttons.ButtonBrt(event);' ); this.setAttribute('onmouseout', 'custombuttons.ButtonDim(event);' ); this.setAttribute("author",'nicholas'); // Stores Author. this.setAttribute("version",'20080306.00'); // Stores Version. this.setAttribute("homepage", // Stores Homepage. "http://custombuttons2.com/forum/viewtopic.php?f=35&t=" + "523"); this.setAttribute("dependency",'FF 2.0.*,CB 2.0.*'); // Stores Dependency. this.setAttribute("status",'Complete'); // Stores Devstatus. this.setAttribute("public",true); // Stores Public. 这是在CUSTOM BUNTTONS2里最大化隐藏标题栏的代码 不过在手势里用无法恢复,看看谁能把它改下 要不就只能安装CUSTOM BUNTTONS2用安钮的方式来用了 |
|
|
3楼#
发布于:2008-08-10 21:46
disable tab mix plus
|
|
|
4楼#
发布于:2008-08-10 21:46
没用啊,就算是开firefox安全模式,不加在任何插件都不行
|
|
5楼#
发布于:2008-08-10 21:46
不要用安全模式,新建一个乾净的profile试试
|
|