1.先安装侧边标签扩展:Sidebery
2.浏览器地址栏输入about:support进入排障信息,在应用程序概要找到配置文件夹,点击右边打开文件夹。
打开看目录是否有“chrome”文件夹,如没有手动新建一个
进chrome文件夹内新建一个userChrome.css (可新建一个txt文本文件再重命名为.css后缀) 文件写入下面内容
#main-window:not([drawtitle="true"]):not([inFullscreen="true"])
#nav-bar {
margin-left : 30px; /* leftTop drag area */
border-right: 140px solid var(--toolbar-bgcolor);
}
:root[sizemode="maximized"] #nav-bar {
margin-top: -16px !important; /* Top drag area */
margin-left : 0px !important; /* hidden leftTop drag area in Fullscreen mode*/
border-right: 140px solid var(--toolbar-bgcolor);
}
:root[privatebrowsingmode="temporary"] #nav-bar {
border-right: 180px solid var(--toolbar-bgcolor) !important;
}
/* move down to hidden titlebar */
#titlebar {
margin-bottom: -31px !important;
}
/* move down 3 button on rightTop */
.titlebar-buttonbox-container {
margin-bottom: 6px !important;
}
:root[sizemode="maximized"] .titlebar-buttonbox-container {
margin-bottom: 6px !important;
}
/* move down private icon */
.private-browsing-indicator {
margin-bottom: -8px !important;
}
:root[sizemode="maximized"] .private-browsing-indicator {
margin-bottom: -18px !important;
}
/* hidden horizontal tabbar on top */
#tabbrowser-tabs[orient="horizontal"] {
visibility: collapse !important;
}
#sidebar-box[sidebarcommand="_0ad88674-2b41-4cfb-99e3-e206c74a0076_-sidebar-action"]
sidebarheader {
visibility: collapse !important;
}
如果顶部或者最大化、最小化、关闭位置显示不贴合。可调整
:root[sizemode="maximized"] #nav-bar {
margin-top: -16px !important; /* Top drag area */
"-16px"参数
/* move down 3 button on rightTop */
.titlebar-buttonbox-container {
margin-bottom: 6px !important;
}
:root[sizemode="maximized"] .titlebar-buttonbox-container {
margin-bottom: 6px !important;
}
“两个6px"参数,其它位置同理
3.地址栏输入about:config 回车进入高级首选项
在搜索栏输入userprofile查询到toolkit.legacyUserProfileCustomizations.stylesheets 在右边点击切换按钮修改为”true"
重启浏览器就可以了。如要恢复直接把toolkit.legacyUserProfileCustomizations.stylesheets 修改回 false 即可