firefox92+以上版本很多UC无法使用,比如最需要的多列书签,由于config.js和userChrome.js文件需要升级导致;

升级到99+以后,将两个js文件(config.js复制到fierfox根目录,userChrome.js复制到配置文件chrome目录下)注意,需要正式版,不适用于beta版本。

文件下载地址:https://ilaoyao.lanzouh.com/iCcVV02v25ta




firefox同步国内服务器的简单方法:

about:config
搜索identity.fxaccounts.autoconfig.uri
修改成“https://accounts.firefox.com.cn”这个就是国内的账号登入要改回来只要去掉网址里面的cn就ok
修改好后 直接点击头像登入就OK




Firefox90~91的标签栏过高,并且定制中界面的紧凑型取消,这个时候可以通过about:config来设置: browser.compactmode.show 参数启用紧凑密度。(后续的版本能否开启未可知)




99+版本中设置左侧增加了一个 mozilla产品

about:config中修改 browser.preferences.moreFromMozilla 为false即可。




/*标签栏宽度设置*/(userchrome.css):

.tabbrowser-tab:not([pinned])[fadein] { min-width: 30px !important; max-width: 150px !important;}?




隐藏firefox默认页(首页,新建页)的logo设置(usercontent.css)

@-moz-document url(about:newtab),url(about:home)
{
    .logo-and-wordmark,.personalize-button
    {
        display: none !important;
    }
    .logo,.wordmark,.icon.icon-settings
    {
        background: url("") !important;
    }
}