this repo has no description
at main 44 lines 1.3 kB view raw
1// userchrome.css usercontent.css activate 2user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true); 3 4// fill svg color 5user_pref("svg.context-properties.content.enabled", true); 6 7// enable :has selector 8user_pref("layout.css.has-selector.enabled", true); 9 10// integrated calculator at urlbar 11user_pref("browser.urlbar.suggest.calculator", true); 12 13// integrated unit convertor at urlbar 14user_pref("browser.urlbar.unitConversion.enabled", true); 15 16// trim url 17user_pref("browser.urlbar.trimHttps", true); 18user_pref("browser.urlbar.trimURLs", true); 19 20// show profile management in hamburger menu 21user_pref("browser.profiles.enabled", true); 22 23// gtk rounded corners 24user_pref("widget.gtk.rounded-bottom-corners.enabled", true); 25 26// show compact mode 27user_pref("browser.compactmode.show", true); 28 29// fix sidebar tab drag on linux 30user_pref("widget.gtk.ignore-bogus-leave-notify", 1); 31 32user_pref("browser.tabs.allow_transparent_browser", true); 33 34// uidensity -> compact 35user_pref("browser.uidensity", 1); 36 37// macos transparent 38user_pref("widget.macos.titlebar-blend-mode.behind-window", true); 39 40// don't warn on about:config open 41user_pref("browser.aboutConfig.showWarning", false); 42 43user_pref("sidebar.revamp", false); 44user_pref("sidebar.verticalTabs", false);