如何防止Firefox在加载网页之前闪烁白页?我经常在Firefox(带有Stylus扩展名)中使用深色主题,并且在加载深色网页之前看到白色闪烁是很烦人的。有什么方法可以将加载页面的背景颜色更改为其他颜色,例如黑色或深灰色?'
我看过一些声称拥有解决方案的网页。但是,每当我尝试这些解决方案时,它们似乎都不会起作用。当前最新版本的Firefox有什么解决方案?
答案 0 :(得分:0)
about:config
并接受警告消息toolkit.legacyUserProfileCustomizations.stylesheets
设置为 trueuserChrome.css
#browser vbox#appcontent tabbrowser, #content, #tabbrowser-tabpanels, browser[type=content-primary], browser[type=content] > html { background: #222 !important; }
userContent.css
中:/* dark blank tab */
@-moz-document url(about:blank), url(about:newtab) {
#newtab-window, html:not(#ublock0-epicker) {
background: #222 !important;
}
}
来源:cml-99 通过 reddit