Step 1:
Step 2:
/*
Firefox Hide Header / Navigator / Top / Tabs / Address / Toolbox
Step 1:
about:config > toolkit.legacyUserProfileCustomizations.stylesheets > true
Step 2:
about:support > Click on "Profile Folder" -> "Open Folder"
Create folder "chrome" here, and put this file in (as "userChrome.css").
More:
Tutorial: How to create and live-debug userChrome.css : FirefoxCSS
https://www.reddit.com/r/FirefoxCSS/comments/73dvty/tutorial_how_to_create_and_livedebug_userchromecss/
*/
@-moz-document url("chrome://browser/content/browser.xul"),
url("chrome://browser/content/browser.xhtml") {
/*
隐藏顶部栏
第一行 10px 是顶部触发显示的高度。
下面的 99px 是顶部栏的预估高度。受各种自定义设置的影响,请自行调整。
如果只需要隐藏地址栏,保留标签栏,用 #nav-bar,然后可能需要适度调节。
*/
#navigator-toolbox {
max-height: 15px !important;
z-index: 1000 !important;
background: black !important;
opacity: 0 !important;
margin-bottom: -99px;
transition: all .2s !important;
}
#navigator-toolbox:hover {
max-height: none !important;
opacity: 1 !important;
}
}
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.